Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 SELECT 查询遍历顶点,就像 MATCH 一样。在 OrientDB 有可能吗?
SELECT 语句允许您使用 out()/in()/both() 方法遍历关系,例如。找朋友的朋友:
SELECT expand(out("FriendOf").out("FriendOf")) from Person WHERE name = 'John'
SELECT 通常不如 MATCH 灵活,但对于基本用例来说足够强大