I have a running instance of JanusGraph Server and I can connect using EmptyGraph for read and write. But I cannot use EmptyGraph to create an instance of JanusGraphManagement. I want to use the API to define my schema but the only options I can find are:
- use
Clusterto create aClientto submit command strings - connect an embedded
JanusGraphinstance directly to my Cassandra backend
I prefer to do everything through the JanusGraph Server. Is there a way to do this using the Java API? Or am I stuck with only the two above options?