According to Parameters - Neo4j Cypher Manual, this is not allowed
MATCH (n) WHERE n.$param = 'something'
I wonder if there is a way to overcome this?
According to Parameters - Neo4j Cypher Manual, this is not allowed
MATCH (n) WHERE n.$param = 'something'
I wonder if there is a way to overcome this?
It's called 'square bracket syntax' and mentioned here: https://neo4j.com/docs/cypher-manual/current/syntax/operators/#syntax-accessing-dynamic-map-parameter
MATCH (n) WHERE n[$param] = 'something'