Thank you very much for always being so helpful. I am just getting starting with Python Driver and I would like to meassure the performance of the queries I execute.
For this I would like to know the total db hits for the queries I am executing just like in Neo4j directly using PROFILE.
which has all the relevant db hits in there. I am just wondering if there is a nicer way to get the total and trying to access this information from ......consume().profile could this not be different again for a different query and I would first have to look through the result and see how to access the single db hits information and add them up.
Just wondering if there is an easy way to access the 37 db hits (in this example) in an easier way?
and suddenly get as error message that NoneType object has no attribute .get
I printed result and printed summary after the respective lines to see what kind of object they are and get the following:
<neo4j.work.result.Result object at 0x000001ED2F7FC520>
None
Has anything changed due to some updates and do I now have to go differently about it? I tried a couple of things and looked online, but could not come up with a solution.