我想使用java中的gremlin查询并过滤titan中超过500个传出边的所有顶点...我该怎么做?我已经开始如下
pipe=pipe.start(graph.getVertices());
答案 0 :(得分:2)
然后你需要一个过滤功能
p.start(
g.getVertices()
.filter(new PipeFunction<Vertex,Boolean>() {
public Boolean compute(Vertex v) {
// write your logic here to count edges on the vertex and
// return true if over 500 and false otherwise
}));
在Java中使用GremlinPipeline更多地描述了here