I have a Gremlin format CSV file. How to load it into a graph database (here it is AWS Neptune) in Java code? Thanks.
I noticed that the Neptune documentation has some sample Java code similar to the code I pointed you to in the comments above that uses withRemote
to connect to a Neptune instance. Once you have the connection established you can issue Gremlin traversals from your Java code and can add vertices and edges as needed.
Hope this helps.
https://docs.aws.amazon.com/neptune/latest/userguide/access-graph-gremlin-java.html
Kelvin