Hi! I am researching Dgraph as part of my work on evaluating the performance of graph databases. In particular, I need to run the following queries:
- Traversing DFS and BFS with a selection of vertices at a given depth.
- Counting all triangles in the graph without taking into account orientation.
I have studied the DQL documentation, but have not found the means to fully execute these queries. Do I understand correctly that the closest thing to performing BFS is recursive queries, and it is impossible to perform DFS and triangle counting in Dgraph?