We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is no list separator type syntax in Gremlin. This is one way to achieve the [0:-2] type pattern.
gremlin> g.V(1,2,3,4).fold().sideEffect(tail(local).store('t')).unfold().where(neq('t')).by().by(unfold()) ==>v[1] ==>v[2] ==>v[3]
Also add an example that shows how to pick the penultimate value is a stream such as
gremlin> g.V(1,2,3,4).tail(2).limit(1) ==>v[3]
The text was updated successfully, but these errors were encountered:
krlawrence
No branches or pull requests
There is no list separator type syntax in Gremlin. This is one way to achieve the [0:-2] type pattern.
Also add an example that shows how to pick the penultimate value is a stream such as
The text was updated successfully, but these errors were encountered: