Closed dariuszkuc closed 1 month ago
No new or changed pages found.
Latest commit: d3387dd07de293e022acbc294d6a2b10ada02cc3
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
Name | Link |
---|---|
Latest commit | d3387dd07de293e022acbc294d6a2b10ada02cc3 |
Latest deploy log | https://app.netlify.com/sites/apollo-federation-docs/deploys/6707fb5cded95d00080ce44e |
This pull request is automatically built and testable in CodeSandbox.
To see build info of the built libraries, click here or the icon next to each commit SHA.
When removing "useless" fetch nodes/groups we remove them in-place while still iterating over the same list. This leads to potentially skipping processing of some the children fetch nodes, as when we remove nodes we left shift all remaining children but the iterator keeps the old position unchanged effectively skipping next child.