Skip to content

Instantly share code, notes, and snippets.

@okram
Created August 4, 2014 22:50
Show Gist options
  • Save okram/a003eebe90f940e2f58f to your computer and use it in GitHub Desktop.
Save okram/a003eebe90f940e2f58f to your computer and use it in GitHub Desktop.
// 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