Skip to content
Advertisement

Is there a way to get the GraphML representation of a graph from gremlinpython

I am using Janusgraph in a remote server to which I connect with a python remote client via

JavaScript

but when I try to export the graph to a GraphML file with

JavaScript

it gets saved in the remote server instead of the local client.

Is there a way to save the GraphML file locally? Thanks in advance!!!

Advertisement

Answer

I’m afraid that you can only do such a thing with a script based request at this point. You would basically send a script that writes the graph to a string of GraphML and return that as your result. This approach will only work if your server supports Groovy-based scripts. You would send a script with this structure (in your case you will of course use the graph you’ve defined on the server):

JavaScript

You would then get a string of GraphML back in Python which you could process as needed.

Advertisement