How do I get the Neo4J primary key back in a query result?

1k Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

If, by "primary key", you mean the neo4j-assigned node ID, you can use the ID() Cypher function. For example:

{"statements" : [ {"statement" : "MATCH (n) where n.id = { id } RETURN n, ID(n)", 
                   "parameters" : { 
                        "id" : "1001"
                    } 
                }] 
}