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
Is your feature request related to a problem? Please describe.
In GNN or other application use cases like (get 100 players and explore to get their followers, limit 2 per each )
Describe the solution you'd like
This is feasible/doable as the GetNeighbors limit pushdown is ready, right?
Could be SAMPLE/LIMIT before YIELD? like:
This is to SAMPLE over single GetNeighbors
lookup on player YIELD id(vertex) AS VertexID | limit 5 | GO FROM $-.VertexID OVER follow SAMPLE [2] YIELD $^.player.name AS album, properties($$) AS photo
This is to SAMPLE overall on this step:
lookup on player YIELD id(vertex) AS VertexID | limit 5 | GO FROM $-.VertexID OVER follow YIELD $^.player.name AS album, properties($$) AS photo SAMPLE [10]
Is your feature request related to a problem? Please describe.
In GNN or other application use cases like (get 100 players and explore to get their followers, limit 2 per each )
Describe the solution you'd like
This is feasible/doable as the
GetNeighbors
limit pushdown is ready, right?Could be
SAMPLE/LIMIT
before YIELD? like:Describe alternatives you've considered
Or use different keywords in the above position?
Additional context
The text was updated successfully, but these errors were encountered: