OrientDB查询特定类型的边

时间:2017-06-29 20:16:21

标签: orientdb

我有这个db(定义)类型架构:

Type.Vertex.1 --(Type.Edge.1)--> T.V.2
T.V.1 --(T.E.1)--> T.V.3
T.V.1 --(T.E.1)--> T.V.4

...

我想查询边缘T.V.1T.E.1类型仅为in的所有T.V.3

1 个答案:

答案 0 :(得分:0)

试试这个:

select from <class-name> where <property-name> = "T.V.1" and out("<edge-name>").<property-name> contains 'T.V.3'

希望它有所帮助。

问候。