cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Want to know the Query hit in Neo4j when application is trying to create or update records from UI

Dear Community Member,

I want to know what queries hit the Neo4j when front end application is trying to create or update record from UI.

Generally in Oracle i get to know the activities performed on DB using following Query, is there anything similar in Neo4j:
select v.SQL_TEXT,
v.PARSING_SCHEMA_NAME,
v.FIRST_LOAD_TIME,
v.DISK_READS,
v.ROWS_PROCESSED,
v.ELAPSED_TIME,
v.service
from v$sql v
where to_date(v.FIRST_LOAD_TIME,'YYYY-MM-DD hh24:mi:ss')>ADD_MONTHS(trunc(sysdate,'MM'),-1) order by v.FIRST_LOAD_TIME desc;

If we do not have exposure to code logic and try to understand the query run while using the Front End Application above query comes handy.

2 REPLIES 2

Hi There
Please refer to cypher syntax card below for more details
https://neo4j.com/docs/cypher-refcard/current/
After reading that may be you will find something that matches your needs
Thanking You
Yours Sincerely
Sameer G

you might want to consider Query management - Operations Manual though this requires running stored procedures so as to see what is running at the time the stored proc is run.

Further, if his is Neo4j Enterprise see Logging - Operations Manual