Created
August 4, 2014 22:50
-
-
Save okram/a003eebe90f940e2f58f 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
// BROKEN | |
gremlin> g = TinkerFactory.createClassic() | |
==>tinkergraph[vertices:6 edges:6] | |
gremlin> g.V.store("4") | |
The memory does not have a value for provided variable: %&%cap | |
Display stack trace? [yN] | |
// FIXED | |
gremlin> g = TinkerFactory.createClassic() | |
==>tinkergraph[vertices:6 edges:6] | |
gremlin> g.V.store("4") | |
==>[v[1], v[2], v[3], v[4], v[5], v[6]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment