-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Labels
Description
The example given via the mailing list is,
g.V().hasLabel('person').as('p').order().by('familyName').out('persona').as('personas').out('practicesAt').as('practices').select('rhp').range(2,3);
g.V().hasLabel('person').as('p').order().by('familyName').out('persona').as('personas').out('practicesAt').as('practices').select('rhp').project('rhp').by().range(2,3)
The second gremlin looses the range
optimization.