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

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

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