I have a titan server running with following configurations
- Titan Graph with Cassandra as storage backend
- Gremlin Server with WebSocketChannelizer
- Titan version :titan-1.0.0-hadoop1
And I have a Java Application with Gremlin Driver 3.0.1-incubating which can open a client to connect to the remote gremlin server.
I am able to submit gremlin queries to create vertex and to get the results back with queries like g.V().
CompletableFuture<ResultSet> submitAsync = client.submitAsync("g.V()");
List<Result> list = submitAsync.get().all().get();
Now I want to convert these list into List<Person>
Is there any Object Mapper available for gremlin driver/gremlin server ?