Created
August 11, 2014 19:29
-
-
Save okram/7c53793686b6a67e6b29 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.V.match('a', | |
gremlin> g.of().as('a').out('created').has('name','lop').as('b'), | |
gremlin> g.of().as('b').in('created').has('age', 29).as('c'), | |
gremlin> g.of().as('c').out().jump('c',2)). | |
gremlin> select('c').out('knows').name | |
==>vadas | |
==>josh | |
==>vadas | |
==>josh | |
==>vadas | |
==>josh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment