neo4j - py2neo - Functions like COUNT(),MIN(),MAX() in py2neo Api.(without using cypher.execute) -
hi,
new py2neo api. have knowledge using cypher requirement run python api (instead of cypher.execute("****")), because of performing analytics operation on graph.
i want way find no of nodes in graph, equivalent match n return count(n).
the graph
object has order
attribute (http://py2neo.org/2.0/essentials.html#py2neo.path.order)
from py2neo import graph graph = graph() print(graph.order)
Comments
Post a Comment