In Graph Academy, the first step to process in batches is to
- Tag all the nodes we need to process with a temporary label (for example Process ).
And the tag is attached to the flight
node:
MATCH (f:Flight)
SET f:Process
Is the point of tagging just to be able to limit number of nodes matched? e.g.:
MATCH (flight:Process)
WITH flight LIMIT 500
...other processes...
REMOVE flight:Process