considered I run below query in neo4j browser. It will shows some nodes in neo4j display panel and how many nodes and relationships in this query have.
I wish to get the "nodes count and relationship" count when i execute the query in python way.
query: match(n) return(n) limit 5
results of query in the browser shows : "Displaying 5 nodes, 1 relationships"
I am using python3.5 and module as "from neo4j import GraphDatabase"