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
Remove undefined entities when executing Fetch of query plan (#612)
Improved query plan execution by pruning entities which are `undefined`, `null` or didn't match specified type conditions after a prior `FetchNode` execution. After pruning, only the remaining entities will be fetched in the dependent `FetchNode` execution. If NO entities remain, the request will not be made.
Co-authored-by: Michael Watson <[email protected]>
Co-authored-by: Martijn Walraven <[email protected]>
Co-authored-by: Jesse Rosenberger <[email protected]>
Copy file name to clipboardExpand all lines: gateway-js/CHANGELOG.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,8 @@
4
4
5
5
> The changes noted within this `vNEXT` section have not been released yet. New PRs and commits which introduce changes should include an entry in this `vNEXT` section as part of their development. When a release is being prepared, a new header will be (manually) created below and the appropriate changes within that release will be moved into the new section.
6
6
7
-
-_Nothing yet! Stay tuned!_
7
+
- Improved query plan execution by pruning entities which are `undefined` or didn't match specified type conditions after a prior `FetchNode` execution. After pruning, only the remaining entities will be fetched in the dependent `FetchNode` execution. If NO entities remain, the request will not be made. [PR #612](https://github.com/apollographql/federation/pull/612)
8
+
8
9
## v0.25.0
9
10
10
11
- Add support for an upcoming mechanism for fetching a graph's schema and configuration when using managed federation. In this release, the new mechanism is opt-in, and users shouldn't use enable it unless instructed by Apollo to do so. [PR #458](https://github.com/apollographql/federation/pull/458)[PR #585](https://github.com/apollographql/federation/pull/585)
0 commit comments