Hi everybody !
I can connect to Azure CosmosDB with gremlin java.
Extract of java code from java tutorial (ok) is :
Cluster cluster;
Client client;
try {
cluster = Cluster.build(new File("src/remote.yaml")).create();
} catch (FileNotFoundException e) {
e.printStackTrace();
return;
}
client = cluster.connect();
I want to use gremlin-scala syntax to work on graph.
How can I connect to cosmosdb graph and work on graph with gremlin-scala ?
Is it possible to connect with gremlin-scala ?
If not, is it possible to connect to azure cosmosdb graph with gremlin java api and then use gremlin-scala api to work on graph ?
If you have any snippet, I can try to it with my azure cosmosdb graph account.
Very thanks for any help.
Alain