We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try to reach new graph's GraphTraversalSource but it doesn't recognize it. Here is my steps
graphs: { ConfigurationManagementGraph: conf/janusgraph-berkeleyje-server.properties }
def createNewGraph(graphName) { map = new HashMap<String, Object>(); map.put("storage.backend", "berkeleyje"); map.put("storage.hostname", "127.0.0.1"); map.put("graph.graphname", graphName); map.put("storage.directory", "/var/lib/janusgraph/"+graphName); ConfiguredGraphFactory.createConfiguration(new MapConfiguration(map)); }
Call groovy script and see the new graph
Try to connect that graph with
_remoteConnection = new DriverRemoteConnection(_gremlinClient, "test"); _g = AnonymousTraversalSource.Traversal().WithRemote(_remoteConnection);
When I want to make operation with traversal object ( like _g.V().Count().Next()) it returns
Gremlin.Net.Driver.Exceptions.ResponseException: InvalidRequestArguments: The traversal source [test] for alias [g] is not configured on the server.
What should I do to make that graph recognizable for the .net driver?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I try to reach new graph's GraphTraversalSource but it doesn't recognize it. Here is my steps
Call groovy script and see the new graph
Try to connect that graph with
When I want to make operation with traversal object ( like _g.V().Count().Next()) it returns
What should I do to make that graph recognizable for the .net driver?
The text was updated successfully, but these errors were encountered: