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
profile match (v:player)-[e:follow]-(mh:player) where id(v)=="player100" with mh as mh match (mh:player)-[e:follow]-() with e as e,mh as mh where none_direct_dst(e) in ["player102","player103"] return none_direct_dst(e), mh.player.name
query2
profile match (v:player)-[e:follow]-(mh:player) where id(v)=="player100" with mh as mh match (mh:player)-[e:follow]-(c) with e as e,mh as mh where none_direct_dst(e) in ["player102","player103"] return none_direct_dst(e), mh.player.name
Query2 add a variable c to the node pattern, compared to query1. In this case, filter is not pushed down.
The text was updated successfully, but these errors were encountered:
Introduction
Contents
Related work
query 1
query2
Query2 add a variable
c
to the node pattern, compared to query1. In this case, filter is not pushed down.The text was updated successfully, but these errors were encountered: