How can i request with gremlin a limited list of nodes with properties of my choosing?
Something like:
g.V. 10 nodes with nodeType=="User", return only id, name and email.
g.V.filter{it.nodeType=='User'}[0..9].transform(){it.id + ' ' + it.name + ' ' + it.email}
For speed, do filter{it.getProperty('nodeType').equals('User')}...
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
6 months ago
viewed
59 times
active