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.
次のグラフがあります
complexノードが次のタイプのノードと2 つ以上の[COMPOSED_OF]リレーションを持つ可能性がある doc ノードを返すクエリを書きたいkeyword
complex
[COMPOSED_OF]
keyword
カテゴリから始めると仮定して、試してみませんか
START cat=<lookup category node> MATCH (cat)-->()-[r:COMPOSED_OF]->()-[:FOUND_IN]->(doc) with count(r) as composedCount, doc WHERE composedCount>2 return doc
[実際にこれを実行していないことに注意してください]