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.
こんにちは、私の関係は次のようなものです。問題は、どれがエンドノードか分からないことです。
あなたの質問には指示が指定されていないので、正しいと思いますが、そうでない場合は、必要に応じて変更してください。
フォローしている人を見つける:
START n=node(yourNodeID) MATCH n-[:follows]->person RETURN person;
あなたをフォローしている人を見つけます:
START n=node(yourNodeID) MATCH person-[:follows]->n RETURN person;
お役に立てれば!