Hi!
I am trying to get the execution time of the cyphers I am running using the python driver.
The code i'm using is shown below, I tried both running the cypher in a transaction and straight into a session.
tx = session.begin_transaction()
result = tx.run(cypher)
avail = result.summary().result_available_after
cons = result.summary().result_consumed_after
The problem is that the result_available_after and result_consumed_after variables are returning None.
Any clues as to why they are returning as None?