这是我正在使用的示例代码,但我不知道如何使用此 Pipeline 对象来获取顶点及其属性。
GremlinPipeline pipeline = new GremlinPipeline(vert)
.out("LIVES_IN_CITY").in("LIVES_IN_CITY")
.filter(new PipeFunction<Vertex,Boolean>() {
public Boolean compute(Vertex v){
return v.getProperty("name").equals(city);
}}).back(2).out("LIVES_IN_CITY");