Time took to run the query is not showing all the time

I am running a query against a remotely installed Neo4J. I do see the response times for some queries but not for the others. Is there a way to check the time took to process my query. ?

Screen Shot 2020-04-23 at 2.24.06 PM

Do you mean the time displayed in the bottom indicated with the red arrow?
That info is only shown in the "table" view, the others do not display that info.

1 Like

Thank you so much. You saved my day. I was thinking I am seeing it for different queries but did not realize it was the different view where I saw this data. Thanks again.

Thanks @webtic.

Got a followup question on how to interpret response times.

Created 19847 relationships, started streaming 5243 records after 1 ms and completed after 320 ms, displaying first 1000 rows.

In the above response ... Is it displaying the time it took to render the results or is this the whole time for processing the query and rendering the results. ?

If it is just the response time to render the results, where can I check how long the query is taking to execute ?

Thanks again.

To get more insight into your queries you can either EXPLAIN or PROFILE them.

You can find more info at https://neo4j.com/docs/cypher-manual/current/query-tuning/how-do-i-profile-a-query/ and other links from that page, especially Execution plans - Cypher Manual might be of interest.

Apart from execution time this show much more info about your queries. Perhaps even too much :slight_smile: