Hello - Does anyone know if Call Graph results, specifically JDBC SQL statements, are available via API or ADQL? I would like to extract a list of URL and JDBC call Graph. For example, URL /api/customer/####/notice may have 3 SQL statements. Is it possible to search for a URL and join its JDBC SQL statements? My desired output would be as follows:
"/api/customer/1234/notice", "SELECT * FROM TABLE1"
"/api/customer/1234/notice", "SELECT * FROM TABLE2"
"/api/customer/1234/notice", "SELECT * FROM TABLE3"
"/api/customer/4565/notice", "SELECT * FROM TABLE1"
"/api/customer/4565/notice", "SELECT * FROM TABLE2"
"/api/customer/4565/notice", "SELECT * FROM TABLE3"