how to get a list of node properties with cypher in neo4j -


i'm trying list of properties set of nodes.

match (n:"indicator") return properties(n), id(n)  

i'm unsure of syntax , couldn't find answer in refcard or docs.

in neo4j version 3.0.0 may do:

match (n:indicator) return properties(n), id(n)  

to return id , properties of nodes.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -