Hi All, I am trying to understand the use of Profile and Explain in neo4j v5.
The first thing i wanted to know is that Suppose if i run a query with Merge statement and i add the profile before the merge clause, then will the data be committed on database or it will simply run and take the information out??
I have read the documentation but i am still confused here.
and to which the key difference between the 2 is EXPLAIN is described as If you want to see the execution plan but not run the query... whereas PROFILE is described as . This will run your query and ....
And such that EXPLAIN does not run the query, whereas PROFILE does
if i run a query with Merge statement and i add the profile before the merge clause, then will the data be committed on database or it will simply run and take the information out??
it should be committed since PROFILE runs the query. Are you seeing otherwise?