neo4j - show excerpt of database -
i'm looking cypher query show excerpt of data in neo4j database. need provide quick overview of kind of data can found in db.
the query should show number of nodes labels possible relations between them. want subset of nodes in database contains full complexity of data in database.
i tried accomplish limit limits total number of nodes returned.
thanks help
there's set of procedures via apoc library(neo4j 3x): apoc.meta.graph
e.g. call apoc.meta.graph
iterate on graph , collect labels , relationships finds.
there's writeup of meta procedures in blog post.
Comments
Post a Comment