How do i write this query in Gremlinq? #812
aslenessbkk
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to i write this query for Gremlinq ?
g.V("abc1234")
.repeat(
both()
.simplePath()
.not(or(hasLabel('Boat'), hasLabel('Car') ))
)
.until(hasLabel("Bus"))
.path()
.limit(1)
Beta Was this translation helpful? Give feedback.
All reactions