Created
April 19, 2023 21:52
-
-
Save spmallette/cd6d9ea5f52fef0a9c8f75f9a81dcc8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gremlin> g = traversal().withRemote(DriverRemoteConnection.using("localhost",8182,"g")) | |
==>graphtraversalsource[emptygraph[empty], standard] | |
gremlin> g.V() | |
gremlin> t = g.addV('zoo');[] | |
gremlin> t.iterate() | |
gremlin> t.iterate() | |
gremlin> t.iterate() | |
gremlin> t.iterate() | |
gremlin> t.iterate() | |
gremlin> t.iterate() | |
gremlin> g.V().elementMap() | |
==>[id:0,label:zoo] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment