You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
这种写法边过滤不生效
match p=(n:person{id:4})-[r:acted_in{role:"Old Salty Dog / Mr. Meeks / Prescient 1"}]-()
return p
用where语句过滤生效
match p=(n:person{id:4})-[r:acted_in]-()
where r.role="Old Salty Dog / Mr. Meeks / Prescient 1"
return p
The text was updated successfully, but these errors were encountered:
这种写法边过滤不生效
match p=(n:person{id:4})-[r:acted_in{role:"Old Salty Dog / Mr. Meeks / Prescient 1"}]-()
return p
用where语句过滤生效
match p=(n:person{id:4})-[r:acted_in]-()
where r.role="Old Salty Dog / Mr. Meeks / Prescient 1"
return p
The text was updated successfully, but these errors were encountered: