在java中的gremlin titan中过滤出边数的顶点

时间:2014-04-06 15:38:42

标签: java gremlin titan

我想使用java中的gremlin查询并过滤titan中超过500个传出边的所有顶点...我该怎么做?我已经开始如下

    pipe=pipe.start(graph.getVertices());

1 个答案:

答案 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