OrientDb - 进行查询

OrientDb - Conducting a query

我有具有以下架构的数据库

我想进行查询以找到所有只有 'A' 而没有 'B' 作为其后代的顶点 (c.out('RepositoryEdge') .out('InfoEdge')) 对于特定示例,只有顶点 #33:53 满足此条件

我应该如何进行查询? 提前致谢

试试这个:

select from <class-name> where @rid not in (select in("InfoEdge").in("RepositoryEdge") from #42:0) and @rid in (select in("InfoEdge").in("RepositoryEdge") from #41:5)

希望对您有所帮助

此致