0

Tinkerpop Frames wiki 说,可以在下面给出一个顶点的注释,以获取给定人“认识”的所有人。但是,无论连接他们的边缘是什么标签,我如何找到与给定人相关的所有人?这可能吗?

 @Adjacency(label="knows")
 public Iterable<Person> getKnowsPeople();

谢谢!

4

1 回答 1

1

你不能不修改底层框架。在AdjacencyAnnotationHandler.processVertex方法中,您会发现 Frames 只是调用了目标蓝图 Vertex 的 getVertices() 方法:

if (ClassUtilities.isGetMethod(method)) {
   final FramedVertexIterable r = new FramedVertexIterable(framedGraph, 

   vertex.getVertices(
      adjacency.direction(), adjacency.label()), 
      ClassUtilities.getGenericClass(method));


    if (ClassUtilities.returnsIterable(method)) {
      return r;
    } else {
      return r.iterator().hasNext() ? r.iterator().next() : null;
    }
} 

如果您需要您请求的功能,请修改此语句以返回所有顶点或使用一些约定(如标签值中的星号)来执行一些基于表达式的绑定。

https://github.com/tinkerpop/frames/blob/master/src/main/java/com/tinkerpop/frames/annotations/AdjacencyAnnotationHandler.java

于 2012-12-14T03:38:12.627 回答