I'm trying to find an Edge between two Vertices that I know the IDs of.
I found this thread Gremlin: What's an efficient way of finding an edge between two vertices? . But that doesn't seem to work with the Cosmos implementation.
I tried g.V('1').outE('isInvited').filter(inV().is('2'))
but that just gives me this error.
Gremlin Query Compilation Error: Unable to find any method 'filter'
Then I tried g.V('1').outE('isInvited').has('inV', '2')
but that just consistently gives me an empty result even when I know that there is such an Edge.
Is there a way to do this with the CosmosDB gremlin implementation?