We are looking for a none()
step alternative as our Gremlin compliant queries use a none()
step but Cosmos throws a "'none' step not recognized error".
Since Cosmos supports String based queries while adding a Vertex in Java using the .iterate()
method, on the Gremlin traversal a none()
step gets added, which is not supported in Cosmos . Is there any alternative to the none()
step? Can we use .toList()
instead of .iterate()
on the traversal?