You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I use math step with where clause for eg. the below condition works well when I try from gremlin console where(math("(a1 - d1)").by("seconds").by("seconds").is(lte(1500)))
But the same condition does not compile in Scala code.
How can I use math step with where clause for eg. the below condition works well when I try from gremlin console
where(math("(a1 - d1)").by("seconds").by("seconds").is(lte(1500)))
But the same condition does not compile in Scala code.
.where(math("(a1 - d1)").by("arrivalSeconds").by("departureSeconds").is(P.lte(1500)))
The text was updated successfully, but these errors were encountered: