>>> g.E().toList()
[e[362][292-wrote->318]]
>>> thing = g.E().toList()[0]
>>> g.E(thing).toList()
[e[362][292-wrote->318]]
>>> g.E(362).toList()
[]>>> g.V(236).both().toList()
[v[212], v[212], v[212]]--
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-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/f8f0c4f2-be8c-4ca7-98dd-30063ad57e02%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Robert Dale
To unsubscribe from this group and stop receiving emails from it, send an email to gremlin-user...@googlegroups.com.
--
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-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/cf27b8aa-405c-4b03-b0d3-fbdb24a2b1ae%40googlegroups.com.
Where edge 12 was created by the server-side toy-graph builder, and edge 97 was added by me (see previous code.)>>> g.E(int(12)).toList()
[e[12][6-created->3]]
>>> g.E(int(97)).toList()
[]
Also, as there is an entire serializer layer in between the python space and the server, the data types presented to the server would seem to be outside of my control right?
Thanks,
Peter
Robert Dale
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/b44ffffe-9137-4940-9ada-e7c070541496%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
graphs: {
graph: conf/tinkergraph-empty.properties}gremlin.graph=org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph
gremlin.tinkergraph.vertexIdManager=LONGas GraphSON can lose the identifier’s type during serialization (i.e. it will assumeIntegerwhen the default for TinkerGraph isLong, which could lead to errors
conf/tinkergraph-empty.properties file, so it now readsgremlin.graph=org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph
gremlin.tinkergraph.vertexIdManager=LONG
gremlin.tinkergraph.edgeIdManager=LONG
gremlin.tinkergraph.vertexPropertyIdManager=LONGTo unsubscribe from this group and stop receiving emails from it, send an email to gremlin-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/127eaeca-ddb6-4f38-994c-ceaddabd3291%40googlegroups.com.