I have a situation where each user will have a million node graph of their own which possibly connects to other users’ graphs. I want to implement graph belonging to each user as separate graph in DGraph. How many such individual graphs can DGraph installation can allow if the users are in billions? I have this type of usage because work on individual user’s graph is far more than work on graph connecting multiple users.
Also, what is the Big O for finding cycles in the graph? What algorithm is used?
Ram