Consider the following query:
explain create (e:Entity {entity_id: "aaa"})<-[r:ChildOf]-(c:Component {component_id: "Transform"}) return e, c, r
It results in the following query plan:
╒══════════════════════════════════════╕
│QUERY PLAN │
╞══════════════════════════════════════╡
│" * Produce {e, c, r}" │
├──────────────────────────────────────┤
│" * Accumulate" │
├──────────────────────────────────────┤
│" * CreateExpand (e)<-[r:ChildOf]-(c)"│
├──────────────────────────────────────┤
│" * CreateNode" │
├──────────────────────────────────────┤
│" * Once" │
└──────────────────────────────────────┘
What does the Accumulate step do, following the CreateExpand step?