I've found related methods:
find
- doesn't work because this version ofneo4j
doesn't support labels.match
- doesn't work because I cannot specify a relation, because the node has no relations yet.match_one
- same asmatch
.node
- doesn't work because I don't know the id of the node.
I need an equivalent of:
start n = node(*) where n.name? = "wvxvw" return n;
Cypher query. Seems like it should be basic, but it really isn't...
PS. I'm opposed to using Cypher for too many reasons to mention. So that's not an option either.