I'm using the rest api, and cypher. How do I get back the primary key when doing a query like this for a node with some id that I have assigned to it?
{"statements" : [ {"statement" : "MATCH (n) where n.id = { id } RETURN n",
"parameters" : {
"id" : "1001"
}
}]
}
This will return
{"results":[{"columns":["n"],"data":[{"row":[{"id":"1001"}]}]}],"errors":[]}
Is there a way to get the Neo4J primary key as well?
If, by "primary key", you mean the neo4j-assigned node ID, you can use the ID() Cypher function. For example: