Set a parameter

Set a parameter to be sent with queries.

The :param name: 'Stella' command will define a parameter named "name" and it will be sent along with your queries.
Using parameters, rather than hard coding values, will allow fo reuse of the query plan cahe.

Cypher query example with a param: MATCH (n:Person) WHERE n.name = $name

Related: :help params