Hello, thanks for project, it seems promising for a use case I am trying to solve.
I want to understand if a graph can be persisted to the store and read in its entirety using a single store API and what would be the performance implication of recreating a Graph for every query to be resolved.
For example, in an online game in which the user goes from one vertex to the next, I plan to store vertex and edge data in the store. However, if the user quits the game and returns after a time, I want to be able to recreate the entire graph in memory from the persistent store.
Is this possible, as I only see the listvertex, listedges APIs in the store and not fetchgraph APIs!