Is It Possible to See OQL/SQL Translation of XPath?

0
While XPath is very simple, sometimes I feel it obscures the details of the query. Or in other words, I am trying to imagine into what OQL/SQL my XPath is being translated but sometimes I am not sure.   If I have my XPath, is there a way to actually see into what OQL or SQL it is being translated behind the scenes?
asked
1 answers
4

Hey Lukáš!

For sure, if you are running your application locally you can do this:

Go to advanced menu on the console and click on set log levels

image.png

 

There you need to know that the log with Connection bus are the ones that are related to the database. If you set the log level to debug for example you are able to see the queries that are being done:

image.png

image.png

answered