Replies: 1 comment 2 replies
-
Hi, You need to ensure which is the connection direction. I think you can use: g.V('id1').OutE('SpecificEdge') : returns all the specific edge(s) that are coming out of the vertex itself (id1) you can do the same but with id2 vertex. g.V('id2').InE('SpecificEdge') With ExRam.Gremlinq.Core: var edge = await _g.V("id1").OutE(); or var edge = await _g.V("id2").InE(); Hope this helps! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given two nodes with
id1
andid2
, how can I find a Specific Edge of TypeE
between those two?Beta Was this translation helpful? Give feedback.
All reactions