It is possible to change this behavior by building theGraphSONWriterwith thewrapAdjacencyListsetting set totrue, ...
wrapAdjacencyList?--
You received this message because you are subscribed to the Google Groups "Gremlin-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gremlin-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/c49f9065-b88e-4852-9279-a56d07a77296%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
fos = new FileOutputStream("my-graph.json")GraphSONWriter.build().wrapAdjacencyList(true).create().writeGraph(fos,graph)As taken from Practical Gremlin:On Thu, Jun 28, 2018 at 2:49 AM <reinhard...@gmail.com> wrote:The documentation states:It is possible to change this behavior by building theGraphSONWriterwith thewrapAdjacencyListsetting set totrue, ...How and where do I specify thewrapAdjacencyList?Some config file? Exact syntax?