Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以传递多个属性,其中的值包含在 gremlin 查询的 has 子句中,例如:
g.V.has(['country','AUS'],['country','USA'])
你可以做:
gremlin> g = TinkerGraphFactory.createTinkerGraph() ==>tinkergraph[vertices:6 edges:6] gremlin> g.V.has('age',T.in,[29,32]) ==>v[1] ==>v[4]