javeme commented on issue #2153: URL: https://github.com/apache/incubator-hugegraph/issues/2153#issuecomment-1463809850
note `and()` is a filter step: https://tinkerpop.apache.org/docs/current/reference/#and-step you can try this sample: ```java g.V().outE('el1').has('ep0', inside(0.26257116683022674,0.9491151866694021)).outV().aggregate('a').cap('a').as('x') .V().out('el0').where(within('x')) ``` you can please also ref https://stackoverflow.com/questions/48067834/gremlin-intersection-operation -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
