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
Post a Comment