Executing Cypher statements
1.3 · Lesson

Executing Cypher statements

You can use the execute_query() method to run one-off Full definition for Cypher (opens in a new tab)Neo4j's implementation of GQL, the ISO standard query language for graph databases. It is declarative: you describe the pattern to find, and the database decides how to find it. statements or statements that return a small number of records. This method fetches a list of records and loads them into memory.

"The method returns a tuple that can be unpacked to access the query result, summary, and keys", "The method expects a Cypher statement as a string as the first argument", "Any named parameters not suffixed with an underscore can be accessed in the query by prefixing the name with a dollar sign", ]} layout="stack">