我想查询并与在Java中使用小鬼巨头500余个边过滤所有的顶点......我该怎么办呢?我有如下起步
pipe=pipe.start(graph.getVertices());
我想查询并与在Java中使用小鬼巨头500余个边过滤所有的顶点......我该怎么办呢?我有如下起步
pipe=pipe.start(graph.getVertices());
那么你需要一个过滤功能
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所描述的更多在这里