| node/edge | notes |
|---|---|
| 3 | vertex count |
| A | labels are strings of no more than 255 characters and contain no whitespace. |
| B | |
| C | |
| -1 | sentinel marking end of vertices; edges next |
| A B | edge from vertex A to vertex B |
| A C | edge from vertex A to vertex C |
| B A | etc |
| B C | |
| C A | |
| C B | |
| -1 -1 | sentinel marking end of edges; next queries |
| A | check for cycle starting from vertex A |
| B | check for cycle starting from vertex B |
| -1 | end of queries |