Cypher Procedures And Algorithms Reference

Consumer View

Procedures are the row-producing extension surface of Cypher in Nexyron. If clauses shape the query pipeline and functions transform values, procedures are the parts that execute a larger operation and stream records back into that pipeline.

Main Families

How To Think About Procedures

Different families serve different roles:

The key user pattern is:

CALL nexyron.pagerank() YIELD node_id, score
WITH node_id, score
RETURN node_id, score
LIMIT 10

That is why procedures are documented separately from clauses and functions. They are not isolated APIs. They are composable row sources inside the same query language.

What To Read First