gremlin intersection operation
问题 I'm using the gremlin console v3.3.1. Using the "Modern" graph from the tutorial: http://tinkerpop.apache.org/docs/current/tutorials/getting-started/ Creating the graph with this: gremlin>graph = TinkerFactory.createModern() gremlin>g = graph.traversal() I can find all the people that know "vadas" like this: g.V().hasLabel('person').has('name', 'vadas').in('knows').hasLabel('person').valueMap() And I can find all the people that created the software "lop" with this: g.V().hasLabel('software')