You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using orientdb-tp3 and tried to use g.io to import graphml to orientdb. However, it seems orientdb-gremlin does not have the method implemented for graph traversalsource to do that. According to the tinkerpop document
The use of Graph.io() has been deprecated to further remove dependence on the Graph (Structure) API for users and to extend these basic operations to GLV users by making these features available as part of the Gremlin language.
It is now possible to simply use Gremlin:
graph = ...
g = graph.traversal()
g.io(someInputFile).read().iterate()
g.io(someOutputFile).write().iterate()
The text was updated successfully, but these errors were encountered:
I am using orientdb-tp3 and tried to use g.io to import graphml to orientdb. However, it seems orientdb-gremlin does not have the method implemented for graph traversalsource to do that. According to the tinkerpop document
The text was updated successfully, but these errors were encountered: