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

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

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -