Hello would there be a way to view the body of a query from pytigergraph? I’d like to not use Studio and just see what a query does from VS Code.
E.g.,
conn.viewInstalledQuery(“my_query”)
CREATE QUERY my_query(Vertex d) FOR my_graph {
Start {d.*};
SELECT t FROM Start:s - (HOPS_TO:h) - Target:t;
PRINT t;
}