Reputation: 1568
when i run
rexster.getGraphNames()
my only result is graph, when i ran a gremlin instance directly over titan i had
tmp
and created a graph called
mygraph
i have been loooking around and havent found anything
Upvotes: 0
Views: 966
Reputation: 46206
Titan Server will only host a single instance of a graph. Therefore, rexster.getGraphNames()
will always only return one graph and it will always be called graph
.
Creating a graph called mygraph
with the Gremlin REPL won't connect Titan Server to the graph unless you've configured it to do so and even then, it will still be referred to by Titan Server as just graph
.
Upvotes: 2