@graphql-tools/delegate
Version:
A set of utils for faster development of GraphQL tools
1,556 lines (1,190 loc) • 86.7 kB
Markdown
# @graphql-tools/delegate
## 10.2.16
### Patch Changes
- [#532](https://github.com/graphql-hive/gateway/pull/532) [`4e33933`](https://github.com/graphql-hive/gateway/commit/4e339333945f4c4547d9ae719e67b4671fe89f04) Thanks [@EmrysMyrddin](https://github.com/EmrysMyrddin)! - dependencies updates:
- Updated dependency [`@whatwg-node/promise-helpers@^1.3.0` ↗︎](https://www.npmjs.com/package/@whatwg-node/promise-helpers/v/1.3.0) (from `^1.2.5`, in `dependencies`)
- Updated dependencies [[`4e33933`](https://github.com/graphql-hive/gateway/commit/4e339333945f4c4547d9ae719e67b4671fe89f04)]:
- @graphql-tools/batch-execute@9.0.15
## 10.2.15
### Patch Changes
- [#862](https://github.com/graphql-hive/gateway/pull/862) [`278618a`](https://github.com/graphql-hive/gateway/commit/278618a1383a01016041ce0a40adec8803c62448) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Updated dependency [`@whatwg-node/promise-helpers@^1.2.5` ↗︎](https://www.npmjs.com/package/@whatwg-node/promise-helpers/v/1.2.5) (from `^1.0.0`, in `dependencies`)
- Updated dependencies [[`278618a`](https://github.com/graphql-hive/gateway/commit/278618a1383a01016041ce0a40adec8803c62448)]:
- @graphql-tools/batch-execute@9.0.14
## 10.2.14
### Patch Changes
- [#726](https://github.com/graphql-hive/gateway/pull/726) [`6334b2e`](https://github.com/graphql-hive/gateway/commit/6334b2e5d4942693121ab7d44a96fa80408aace1) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Added dependency [`@whatwg-node/promise-helpers@^1.0.0` ↗︎](https://www.npmjs.com/package/@whatwg-node/promise-helpers/v/1.0.0) (to `dependencies`)
- [#742](https://github.com/graphql-hive/gateway/pull/742) [`2a54e85`](https://github.com/graphql-hive/gateway/commit/2a54e85f2848aea7525703ea33918a21db96b26b) Thanks [@kathrynkodama](https://github.com/kathrynkodama)! - Remove the index from the batched error;
In case of batched delegation (for example multiple book entitites fetched from different places from a field), remove the index from the error message, as it is not relevant in this case.
[See the test](https://github.com/graphql-hive/gateway/blob/ff61b87b5928f065edfd3a6e6c0fd13bc2beac45/packages/stitch/tests/stitchSchemasPathBug.test.ts)
- Updated dependencies [[`6334b2e`](https://github.com/graphql-hive/gateway/commit/6334b2e5d4942693121ab7d44a96fa80408aace1)]:
- @graphql-tools/batch-execute@9.0.13
## 10.2.13
### Patch Changes
- [#662](https://github.com/graphql-hive/gateway/pull/662) [`2318393`](https://github.com/graphql-hive/gateway/commit/2318393bc7b3aca7f53806a44b59277cd176702d) Thanks [@ardatan](https://github.com/ardatan)! - When a field with `@skip` and `@include` directives in a selection set throws, show the correct error
```
// Query
query myQuery($toInclude: Boolean! = false) {
user(id: 1) {
id
name
username
totalReviews @include(if: $toInclude)
# If this throws, show the actual error instead of `Argument \"if\" of required type \"Boolean!\" was provided the variable` error
}
}
// Variables
{
"toInclude": true
}
```
## 10.2.12
### Patch Changes
- [#620](https://github.com/graphql-hive/gateway/pull/620) [`d72209a`](https://github.com/graphql-hive/gateway/commit/d72209ad82ec53689f93ce5d81bfa52493919ad9) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency [`@graphql-tools/utils@^10.8.1` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/10.8.1) (from `^10.7.0`, in `dependencies`)
- Updated dependencies [[`d72209a`](https://github.com/graphql-hive/gateway/commit/d72209ad82ec53689f93ce5d81bfa52493919ad9)]:
- @graphql-tools/batch-execute@9.0.12
## 10.2.11
### Patch Changes
- [#506](https://github.com/graphql-hive/gateway/pull/506) [`9144222`](https://github.com/graphql-hive/gateway/commit/91442220b2242a0fa082d4b544d03621572eecd0) Thanks [@ardatan](https://github.com/ardatan)! - Add `isPrototypePollutingKey` to prevent accidential prototype pollution, whenever object manipulation happens with the keys based on the user input, it is validated to prevent prototype pollution.
For example, `WrapQuery` takes `path` which is used to manipulate the object returned to the client. If the user input is `__proto__`, it will throw an error from now on but previously it would have polluted the prototype.
## 10.2.10
### Patch Changes
- [#471](https://github.com/graphql-hive/gateway/pull/471) [`18682e6`](https://github.com/graphql-hive/gateway/commit/18682e6873091afe63f09414f02f93649a4da141) Thanks [@ardatan](https://github.com/ardatan)! - While creating a delegation request for the subschema, an selection set should be spreaded on the union type field correctly.
In case of the following schema;
```graphql
type Query {
foo: Foo
}
union Foo = Bar | Baz
type Bar {
id: ID!
name: String
age: Age
}
type Age {
years: Int
months: Int
}
type Baz {
id: ID!
name: Name
age: Int
}
type Name {
first: String
last: String
}
```
If the operation is generated as following;
```graphql
query {
foo {
id
name
age {
years
months
}
}
}
```
It should be spreaded on the union type field correctly as following;
```graphql
query {
foo {
... on Bar {
id
age {
years
months
}
}
... on Baz {
id
name {
first
last
}
}
}
}
```
## 10.2.9
### Patch Changes
- [#373](https://github.com/graphql-hive/gateway/pull/373) [`e606975`](https://github.com/graphql-hive/gateway/commit/e60697593290255fb9ac407e591ae3e8cb752df2) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Updated dependency [`@graphql-tools/executor@^1.3.10` ↗︎](https://www.npmjs.com/package/@graphql-tools/executor/v/1.3.10) (from `^1.3.8`, in `dependencies`)
- Updated dependency [`@graphql-tools/utils@^10.7.0` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/10.7.0) (from `^10.6.2`, in `dependencies`)
- Updated dependencies [[`e606975`](https://github.com/graphql-hive/gateway/commit/e60697593290255fb9ac407e591ae3e8cb752df2)]:
- @graphql-tools/batch-execute@9.0.11
## 10.2.8
### Patch Changes
- [#322](https://github.com/graphql-hive/gateway/pull/322) [`23b8987`](https://github.com/graphql-hive/gateway/commit/23b89874fcf10b4cb6b1b941f29fa5f5aecf0ef2) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Updated dependency [`@graphql-tools/executor@^1.3.8` ↗︎](https://www.npmjs.com/package/@graphql-tools/executor/v/1.3.8) (from `^1.3.6`, in `dependencies`)
## 10.2.7
### Patch Changes
- [#291](https://github.com/graphql-hive/gateway/pull/291) [`34d1224`](https://github.com/graphql-hive/gateway/commit/34d12249ead65b8277df976f6318dca757df1151) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Updated dependency [`tslib@^2.8.1` ↗︎](https://www.npmjs.com/package/tslib/v/2.8.1) (from `^2.5.0`, in `dependencies`)
- Updated dependencies [[`34d1224`](https://github.com/graphql-hive/gateway/commit/34d12249ead65b8277df976f6318dca757df1151)]:
- @graphql-tools/batch-execute@9.0.10
## 10.2.6
### Patch Changes
- [#268](https://github.com/graphql-hive/gateway/pull/268) [`7df2215`](https://github.com/graphql-hive/gateway/commit/7df2215abd309dc1dfd91f4ec91ce975f3982c62) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Updated dependency [`dataloader@^2.2.3` ↗︎](https://www.npmjs.com/package/dataloader/v/2.2.3) (from `^2.2.2`, in `dependencies`)
- [#269](https://github.com/graphql-hive/gateway/pull/269) [`cdca511`](https://github.com/graphql-hive/gateway/commit/cdca5116ce30c2bfced1130c9fbead67280af9d4) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Updated dependency [`@graphql-tools/executor@^1.3.6` ↗︎](https://www.npmjs.com/package/@graphql-tools/executor/v/1.3.6) (from `^1.3.3`, in `dependencies`)
- Updated dependency [`@graphql-tools/schema@^10.0.11` ↗︎](https://www.npmjs.com/package/@graphql-tools/schema/v/10.0.11) (from `^10.0.8`, in `dependencies`)
- Updated dependency [`@graphql-tools/utils@^10.6.2` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/10.6.2) (from `^10.6.0`, in `dependencies`)
- Updated dependencies [[`7df2215`](https://github.com/graphql-hive/gateway/commit/7df2215abd309dc1dfd91f4ec91ce975f3982c62), [`cdca511`](https://github.com/graphql-hive/gateway/commit/cdca5116ce30c2bfced1130c9fbead67280af9d4)]:
- @graphql-tools/batch-execute@9.0.9
## 10.2.5
### Patch Changes
- [#257](https://github.com/graphql-hive/gateway/pull/257) [`9ce705c`](https://github.com/graphql-hive/gateway/commit/9ce705c5ccc5e6f4ac26af6e6471a6d2f4e995db) Thanks [@ardatan](https://github.com/ardatan)! - Do not show internal non-nullability errors in the gateway
## 10.2.4
### Patch Changes
- Updated dependencies [[`e53d4af`](https://github.com/graphql-hive/gateway/commit/e53d4af783f9d703dea4d5e703be0dddaa337534)]:
- @graphql-tools/batch-execute@9.0.8
## 10.2.3
### Patch Changes
- [#231](https://github.com/graphql-hive/gateway/pull/231) [`7ca0ff3`](https://github.com/graphql-hive/gateway/commit/7ca0ff331e42c133c4218a8086bbf0a7607f45d0) Thanks [@ardatan](https://github.com/ardatan)! - Avoid extensions and use \`stitchingInfo\` for provided fields
## 10.2.2
### Patch Changes
- [#205](https://github.com/graphql-hive/gateway/pull/205) [`2e0add3`](https://github.com/graphql-hive/gateway/commit/2e0add3ea9b237ad385d5b5cd4c12eeeb847805a) Thanks [@ardatan](https://github.com/ardatan)! - Fix missing key fields in the nested queries
## 10.2.1
### Patch Changes
- [#164](https://github.com/graphql-hive/gateway/pull/164) [`310613d`](https://github.com/graphql-hive/gateway/commit/310613d68d1df3e2bceafbd0730084a4c83527bf) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Updated dependency [`@graphql-tools/utils@^10.6.0` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/10.6.0) (from `^10.5.6`, in `dependencies`)
- Updated dependencies [[`310613d`](https://github.com/graphql-hive/gateway/commit/310613d68d1df3e2bceafbd0730084a4c83527bf), [`f0b6921`](https://github.com/graphql-hive/gateway/commit/f0b69219fefc1b24c5511a1c623a5e3bbaf5ca0b), [`f71366d`](https://github.com/graphql-hive/gateway/commit/f71366d234fe8f30a419814fe1460f1e22663241)]:
- @graphql-tools/batch-execute@9.0.7
## 10.2.0
### Minor Changes
- [#148](https://github.com/graphql-hive/gateway/pull/148) [`f32cb2a`](https://github.com/graphql-hive/gateway/commit/f32cb2a0289aa32e4811ced5dc1aac3efb0674f1) Thanks [@ardatan](https://github.com/ardatan)! - Introduce \`onDelegationPlan\` and \`onDelegationStageExecuteDone\` hooks
## 10.1.3
### Patch Changes
- [#118](https://github.com/graphql-hive/gateway/pull/118) [`73c621d`](https://github.com/graphql-hive/gateway/commit/73c621d98a4e6ca134527e349bc71223c03d06db) Thanks [@{](https://github.com/{)! - Do not ignore request selection set when overriding the fields
```ts
import { buildSchema, graphql } from 'graphql';
import { addResolversToSchema } from '@graphql-tools/schema';
import { stitchSchemas } from '@graphql-tools/stitch';
import { delegateToSchema } from '@graphql-tools/delegate';
const sub_schema = addResolversToSchema({
schema: buildSchema(`
type Query {
current_user: User
}
type User {
id: ID!
name: String!
age: Int!
}
`),
resolvers: {
Query: {
current_user: () => ({ id: '5', name: 'John Doe', age: 10 }),
},
},
});
const stitched_schema = stitchSchemas({
subschemas: [
{
schema: sub_schema,
createProxyingResolver: (options) => {
return (_parent, _args, context, info) => {
const operationName = info.operation.name ? info.operation.name.value : undefined;
return delegateToSchema({
schema: options.subschemaConfig,
operation: options.operation,
context,
info,
operationName,
});
};
},
},
],
resolvers: {
name: {
selectionSet: '{ age }',
resolve: (parent) => `${parent.name}(${parent.age})`, // Age should be here
},
},
},
});
```
## 10.1.1
### Patch Changes
- [`342e044`](https://github.com/ardatan/graphql-tools/commit/342e044c7da74aaf5df6a90ce68973c525c9aa10)
Thanks [@ardatan](https://github.com/ardatan)! - Prevent extra queries to the same subgraph
multiple times on the same plan, and merge iterables correctly
## 10.1.0
### Minor Changes
- [#6619](https://github.com/ardatan/graphql-tools/pull/6619)
[`e9906eb`](https://github.com/ardatan/graphql-tools/commit/e9906eb311132ab902720e75bc787228d67c0e34)
Thanks [@kroupacz](https://github.com/kroupacz)! - Handle shared root field queries with aliases
## 10.0.29
### Patch Changes
- [#6620](https://github.com/ardatan/graphql-tools/pull/6620)
[`da1de08`](https://github.com/ardatan/graphql-tools/commit/da1de08c269a4cb3ed8240bf191833f7e75a6b01)
Thanks [@kroupacz](https://github.com/kroupacz)! - - fix `subtractSelectionSets()` method - find
field by its path correctly
## 10.0.28
### Patch Changes
- [`f470f49`](https://github.com/ardatan/graphql-tools/commit/f470f49f7d8445801a2983f14532124588f9f59e)
Thanks [@ardatan](https://github.com/ardatan)! - Support original format of "@stream"
## 10.0.27
### Patch Changes
- [`180f3f0`](https://github.com/ardatan/graphql-tools/commit/180f3f0c8362613eb3013ff12f2d5405cd987903)
Thanks [@ardatan](https://github.com/ardatan)! - Avoid extra calls if the keys are already
resolved
## 10.0.26
### Patch Changes
- [#6586](https://github.com/ardatan/graphql-tools/pull/6586)
[`8effad4`](https://github.com/ardatan/graphql-tools/commit/8effad4ffb9be1bca098b8cb6ce41b84ac7d9b6b)
Thanks [@ardatan](https://github.com/ardatan)! - Performance improvements on upstream request
execution
## 10.0.25
### Patch Changes
- [#6579](https://github.com/ardatan/graphql-tools/pull/6579)
[`8a16b01`](https://github.com/ardatan/graphql-tools/commit/8a16b01296457bdcfbb111e02b6f6569ef8b04aa)
Thanks [@ardatan](https://github.com/ardatan)! - Performance improvements on upstream request
execution
## 10.0.24
### Patch Changes
- [#6576](https://github.com/ardatan/graphql-tools/pull/6576)
[`4cdb462`](https://github.com/ardatan/graphql-tools/commit/4cdb46248774f2d5ae2757d40e1d55e83d7413b3)
Thanks [@ardatan](https://github.com/ardatan)! - Performance improvements on upstream request
execution
## 10.0.23
### Patch Changes
- [#6573](https://github.com/ardatan/graphql-tools/pull/6573)
[`7e2938d`](https://github.com/ardatan/graphql-tools/commit/7e2938d45c6d0a6eb6b18b89f9f80e9b5b5c08db)
Thanks [@ardatan](https://github.com/ardatan)! - When there are two services like below then the
following query senty, the gateway tries to fetch `id` as an extra field because it considers `id`
might be needed while this is not correct. This patch avoids any extra calls, and forwards the
query as is to the 2nd service.
```graphql
query {
viewer {
booksContainer(input: $input) {
edges {
cursor
node {
source {
# Book(upc=)
upc
}
}
}
pageInfo {
endCursor
}
}
}
}
```
```graphql
type Book @key(fields: "id") @key(fields: "upc") {
id: ID!
upc: ID!
}
```
```graphql
type BookContainer { # the type that is used in a collection
id: ID!
# ... other stuff here
source: Book!
}
type Book @key(fields: "upc") {
upc: ID!
}
type Query {
viewer: Viewer
}
type Viewer {
booksContainer: BooksContainerResult
}
type BooksContainerResult {
edges: [BooksContainerEdge!]!
pageInfo: PageInfo!
}
type BooksContainerEdge {
node: BookContainer!
cursor: String!
}
type PageInfo {
endCursor: String
}
```
## 10.0.22
### Patch Changes
- Updated dependencies
[[`cf2ce5e`](https://github.com/ardatan/graphql-tools/commit/cf2ce5ed4773087cc324599f2812f4fb91398b21)]:
- @graphql-tools/utils@10.5.5
- @graphql-tools/batch-execute@9.0.5
- @graphql-tools/executor@1.3.2
- @graphql-tools/schema@10.0.7
## 10.0.21
### Patch Changes
- [#6471](https://github.com/ardatan/graphql-tools/pull/6471)
[`3163978`](https://github.com/ardatan/graphql-tools/commit/31639789ed385c91644c711fa4b451a5b3647e5f)
Thanks [@ardatan](https://github.com/ardatan)! - Fix broken complex-entity-call
## 10.0.20
### Patch Changes
- [#6469](https://github.com/ardatan/graphql-tools/pull/6469)
[`0e87805`](https://github.com/ardatan/graphql-tools/commit/0e8780572fb1a852c8f4d7c8a59b064ae92bdd6b)
Thanks [@User!](https://github.com/User!)! - Handle merged selection sets in the computed fields;
When a selection set for a computed field needs to be merged, resolve that required selection set
fully then resolve the computed field. In the following case, the selection set for the `author`
field in the `Post` type is merged with the selection set for the `authorId` field in the
`Comment` type.
```graphql
type Query {
feed: [Post!]!
}
type Post {
id: ID! @computed(selectionSet: "{ comments { authorId } }")
}
type Comment {
id: ID!
authorId: ID!
}
type User {
id: ID!
name: String!
}
```
```graphql
type Post {
id: ID!
comments: [Comment!]!
}
type Comment {
id: ID!
}
```
## 10.0.19
### Patch Changes
- [#6437](https://github.com/ardatan/graphql-tools/pull/6437)
[`3188051`](https://github.com/ardatan/graphql-tools/commit/3188051ae530772210e9f3a2c9615932ef13f497)
Thanks [@User](https://github.com/User), [@()](<https://github.com/()>),
[@{](https://github.com/{), [@{](https://github.com/{), [@{](https://github.com/{),
[@{](https://github.com/{), [@{](https://github.com/{)! - Fix the bug happens when a merged field
is a computed field requires another computed field requires a field from the initial subschema.
In the following test case, `totalOrdersPrices` needs `userOrders` which needs `lastName` from
initial `Query.user`. So the bug was skipping the dependencies of `userOrders` because it assumed
`lastName` already there by mistake.
```ts
const schema1 = makeExecutableSchema({
typeDefs: /* GraphQL */ `
type User {
id: ID!
firstName: String!
lastName: String!
address: String
}
type Query {
}
`,
resolvers: {
Query: {
=> {
return {
id: 1,
firstName: 'Jake',
lastName: 'Dawkins',
address: 'everywhere',
};
},
},
},
});
const schema2 = makeExecutableSchema({
typeDefs: /* GraphQL */ `
type UserOrder {
id: ID!
}
type User {
id: ID!
totalOrdersPrices: Int
aggregatedOrdersByStatus: Int
}
type Query {
userWithOrderDetails(userId: ID!, userOrderIds: [ID]): User
}
`,
resolvers: {
Query: {
userWithOrderDetails: (_root, { userId, userOrderIds }) => {
return {
id: userId,
userOrders: userOrderIds?.map((userOrderId: string) => ({ id: userOrderId })),
};
},
},
totalOrdersPrices(user) {
if (user.userOrders instanceof Error) {
return user.userOrders;
}
if (!user.userOrders) {
throw new Error('UserOrders is required');
}
return 0;
},
aggregatedOrdersByStatus(user) {
if (user.userOrders instanceof Error) {
return user.userOrders;
}
if (!user.userOrders) {
throw new Error('UserOrders is required');
}
return 1;
},
},
},
});
const schema3 = makeExecutableSchema({
typeDefs: /* GraphQL */ `
type User {
id: ID!
userOrders: [UserOrder!]
}
type UserOrder {
id: ID!
}
type Query {
userWithOrders(id: ID!, lastName: String): User
}
`,
resolvers: {
Query: {
userWithOrders: (_root, { id, lastName }) => {
return {
id,
lastName,
};
},
},
userOrders(user) {
if (!user.lastName) {
throw new Error('LastName is required');
}
return [
{
id: `${user.lastName}1`,
},
];
},
},
},
});
const stitchedSchema = stitchSchemas({
subschemas: [
{
schema: schema1,
},
{
schema: schema2,
merge: {
selectionSet: '{ id }',
fieldName: 'userWithOrderDetails',
args: ({ id, userOrders }: { id: string; userOrders: any[] }) => ({
userId: id,
userOrderIds: userOrders?.map?.(({ id }: { id: string }) => id),
}),
fields: {
totalOrdersPrices: {
selectionSet: '{ userOrders { id } }',
computed: true,
},
aggregatedOrdersByStatus: {
selectionSet: '{ userOrders { id } }',
computed: true,
},
},
},
},
},
{
schema: schema3,
merge: {
selectionSet: '{ id }',
fieldName: 'userWithOrders',
args: ({ id, lastName }: { id: string; lastName: string }) => ({
id,
lastName,
}),
fields: {
userOrders: {
selectionSet: '{ lastName }',
computed: true,
},
},
},
},
},
],
});
const res = await normalizedExecutor({
schema: stitchedSchema,
document: parse(/* GraphQL */ `
query User {
user {
aggregatedOrdersByStatus
totalOrdersPrices
}
}
`),
});
expect(res).toEqual({
data: {
aggregatedOrdersByStatus: 1,
totalOrdersPrices: 0,
},
},
});
```
## 10.0.18
### Patch Changes
- [#6420](https://github.com/ardatan/graphql-tools/pull/6420)
[`a867bbc`](https://github.com/ardatan/graphql-tools/commit/a867bbc9b5b91e89a09447797b4c02e22e47ddb4)
Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Added dependency
[`@repeaterjs/repeater@^3.0.6` ↗︎](https://www.npmjs.com/package/@repeaterjs/repeater/v/3.0.6)
(to `dependencies`)
- [#6420](https://github.com/ardatan/graphql-tools/pull/6420)
[`a867bbc`](https://github.com/ardatan/graphql-tools/commit/a867bbc9b5b91e89a09447797b4c02e22e47ddb4)
Thanks [@ardatan](https://github.com/ardatan)! - Pass operation directives correctly to the
subschema;
```graphql
query {
hello @someDir
}
```
- [#6418](https://github.com/ardatan/graphql-tools/pull/6418)
[`da93c08`](https://github.com/ardatan/graphql-tools/commit/da93c08b4bc22b5c9be81ed57beba8577f33118a)
Thanks [@ardatan](https://github.com/ardatan)! - Fix extra inline fragments for all abstract types
in the upstream schema call
If there are two subschemas like below, the final `Node` interface is implemented by both `Oven`
and `Toaster` while they are not implemented in both schemas. In this case the query
`{ products { id ... on Node { id } } }` will need to be transformed to
`{ products { id ... on Oven { id } ... on Node { id } } }` for the first subschema. But
previously the query planner was automatically creating inline fragments for all possible types
which was not optimal. Now it adds inline fragments only if this case is seen.
```graphql
type Query {
products: [Product]
}
union Product = Oven | Toaster
interface Node {
id: ID!
}
type Oven {
id: ID!
}
type Toaster implements Node {
id: ID!
warranty: Int
}
```
And another one like below;
```graphql
interface Node {
id: ID!
}
type Oven implements Node {
id: ID!
warranty: Int
}
```
- Updated dependencies
[[`a867bbc`](https://github.com/ardatan/graphql-tools/commit/a867bbc9b5b91e89a09447797b4c02e22e47ddb4)]:
- @graphql-tools/executor@1.3.1
- @graphql-tools/utils@10.3.4
## 10.0.17
### Patch Changes
- [#6403](https://github.com/ardatan/graphql-tools/pull/6403)
[`3803897`](https://github.com/ardatan/graphql-tools/commit/3803897cef27b15bad1718819c5d75030afbe781)
Thanks [@ardatan](https://github.com/ardatan)! - Cleanup extra fields, empty inline fragments and
duplicate \_\_typename fields
## 10.0.16
### Patch Changes
- [`33e8146`](https://github.com/ardatan/graphql-tools/commit/33e8146e33aa17790ee76d14e52f62c684ee1b16)
Thanks [@ardatan](https://github.com/ardatan)! - Fail on query planning phase if the query plan is
not successful before the actual execution
- Updated dependencies
[[`33e8146`](https://github.com/ardatan/graphql-tools/commit/33e8146e33aa17790ee76d14e52f62c684ee1b16)]:
- @graphql-tools/executor@1.3.0
## 10.0.15
### Patch Changes
- [`d54b21a`](https://github.com/ardatan/graphql-tools/commit/d54b21a235f9632d320a32f15594ecd70b5eae29)
Thanks [@ardatan](https://github.com/ardatan)! - If an abstract type on the gateway resolves to a
type that does not exist on the gateway, return null instead of showing an error to the user
- [`d54b21a`](https://github.com/ardatan/graphql-tools/commit/d54b21a235f9632d320a32f15594ecd70b5eae29)
Thanks [@ardatan](https://github.com/ardatan)! - If an enum value coming from the subschema is not
available on gateway, do not show an error to the user but return null instead
## 10.0.14
### Patch Changes
- [#6356](https://github.com/ardatan/graphql-tools/pull/6356)
[`8094c37`](https://github.com/ardatan/graphql-tools/commit/8094c3733c745b2ccb7adcca38024c82c42319a0)
Thanks [@enisdenjo](https://github.com/enisdenjo)! - AggregateError errors are GraphQL located
errors
Instead of transforming the AggregateError itself to a GraphQL located error.
This is because of two reasons:
- AggregateError wont lose the instanceof its class
- Expanding the AggregateError errors will each contain the proper locations
## 10.0.13
### Patch Changes
- [#6312](https://github.com/ardatan/graphql-tools/pull/6312)
[`7b6f77a`](https://github.com/ardatan/graphql-tools/commit/7b6f77a46177def2488ab70ce938b94d0dcf3018)
Thanks [@ardatan](https://github.com/ardatan)! - Use native `Promise.withResolvers` when possible
## 10.0.12
### Patch Changes
- [#6278](https://github.com/ardatan/graphql-tools/pull/6278)
[`66c99d9`](https://github.com/ardatan/graphql-tools/commit/66c99d9c9e480cc4e1569b032952caea0ff69c0c)
Thanks [@ardatan](https://github.com/ardatan)! - Handle `@defer`
- Updated dependencies
[[`66c99d9`](https://github.com/ardatan/graphql-tools/commit/66c99d9c9e480cc4e1569b032952caea0ff69c0c),
[`74f995f`](https://github.com/ardatan/graphql-tools/commit/74f995f17dfea6385e08bcdd662e7ad6fcfb5dfa)]:
- @graphql-tools/utils@10.2.3
- @graphql-tools/executor@1.2.8
## 10.0.11
### Patch Changes
- [#6194](https://github.com/ardatan/graphql-tools/pull/6194)
[`7368829`](https://github.com/ardatan/graphql-tools/commit/73688291af0c8cb2fe550fe8c74fd8af84cb360f)
Thanks [@ardatan](https://github.com/ardatan)! - Handle interface objects in a different way
- [#6188](https://github.com/ardatan/graphql-tools/pull/6188)
[`e10c13a`](https://github.com/ardatan/graphql-tools/commit/e10c13a60e344b9217dc77a7cac50ec447feda7e)
Thanks [@ardatan](https://github.com/ardatan)! - Add `subtractSelectionSets` to get the diff of
two selection sets
- [#6187](https://github.com/ardatan/graphql-tools/pull/6187)
[`dfccfbf`](https://github.com/ardatan/graphql-tools/commit/dfccfbfd6633dd576f660c648f3c6cecff3667a1)
Thanks [@ardatan](https://github.com/ardatan)! - Do not merge errors and regular resolved objects
If a subschema returns an error for specific field that is already resolved by another subschema,
the error should not be merged with the resolved object.
- [#6189](https://github.com/ardatan/graphql-tools/pull/6189)
[`0134f7f`](https://github.com/ardatan/graphql-tools/commit/0134f7ffe5383603961d69337bfa5bceefb3ed74)
Thanks [@ardatan](https://github.com/ardatan)! - Handle interface types with non-shared
implementations;
For example, you have the following services, where `Node` is implemented in both services, but
`Foo` and `Bar` are only implemented in one service. And when the gateway receives the following
query, it should be converted to this because `Node` is not implemented as `Bar` in Service 1
while implemented in Service 2.
Query conversion;
```graphql
# Gateway request
query {
fooBar(id: "1") {
... on Node {
id
}
}
}
```
```graphql
# Service 1 Request
query {
fooBar(id: "1") {
... on Foo {
id
}
... on Bar {
id
}
}
}
```
Services;
```graphql
# Service 1
union FooBar = Foo | Bar
interface Node {
id: ID!
}
type Foo implements Node {
id: ID!
}
type Bar {
id: ID!
}
type Query {
fooBar(id: ID!): FooBar
}
```
```graphql
# Service 2
interface Node {
id: ID!
}
type Foo implements Node {
id: ID!
}
type Bar implements Node {
id: ID!
}
```
- Updated dependencies
[[`7368829`](https://github.com/ardatan/graphql-tools/commit/73688291af0c8cb2fe550fe8c74fd8af84cb360f),
[`e10c13a`](https://github.com/ardatan/graphql-tools/commit/e10c13a60e344b9217dc77a7cac50ec447feda7e)]:
- @graphql-tools/schema@10.0.4
- @graphql-tools/utils@10.2.1
## 10.0.10
### Patch Changes
- [#6134](https://github.com/ardatan/graphql-tools/pull/6134)
[`a83da08`](https://github.com/ardatan/graphql-tools/commit/a83da087e24929ed0734a2cff63c97bd45cc9eb4)
Thanks [@User](https://github.com/User)! - Ignore unmerged fields
Let's say you have a gateway schema like in the bottom, and `id` is added to the query, only if
the `age` is requested;
```graphql
# This will be sent as-is
{
user {
name
}
}
```
But the following will be transformed;
```graphql
{
user {
name
age
}
}
```
Into
````graphql
{
user {
id
name
age
}
}
```graphql
type Query {
}
type User {
id: ID! # is the key for all services
name: String!
age: Int! # This comes from another service
}
````
- [#6150](https://github.com/ardatan/graphql-tools/pull/6150)
[`fc9c71f`](https://github.com/ardatan/graphql-tools/commit/fc9c71fbc9057a8e32e0d8813b23819c631afa65)
Thanks [@ardatan](https://github.com/ardatan)! - If there are some fields depending on a nested
type resolution, wait until it gets resolved then resolve the rest.
See packages/federation/test/fixtures/complex-entity-call example for more details. You can see
`ProductList` needs some fields from `Product` to resolve `first`
## 10.0.9
### Patch Changes
- [#6126](https://github.com/ardatan/graphql-tools/pull/6126)
[`680351e`](https://github.com/ardatan/graphql-tools/commit/680351ee2af39ffd6b4b0048a28954d0d4b8a926)
Thanks [@ardatan](https://github.com/ardatan)! - When there is a Node subschema, and others to
resolve the rest of the entities by using a union resolver as in Federation like below, it was
failing. This version fixes that issue.
```graphql
query {
node(id: "1") {
id # Fetches from Node
... on User {
name # Fetches from User
}
}
}
```
```graphql
type Query {
node(id: ID!): Node
}
interface Node {
id: ID!
}
type User implements Node {
id: ID!
}
type Post implements Node {
id: ID!
}
```
```graphql
# User subschema
scalar _Any
type Query {
_entities(representations: [_Any!]!): [_Entity]!
}
union _Entity = User
interface Node {
id: ID!
}
type User implements Node {
id: ID!
name: String!
}
```
```graphql
# Post subschema
scalar _Any
union _Entity = Post
type Query {
_entities(representations: [_Any!]!): [_Entity]!
}
interface Node {
id: ID!
}
type Post implements Node {
id: ID!
title: String!
}
```
## 10.0.8
### Patch Changes
- [`4ce3ffc`](https://github.com/ardatan/graphql-tools/commit/4ce3ffc8ec927651587e0aa236fdd573e883ef21)
Thanks [@ardatan](https://github.com/ardatan)! - Simplify the logic in `wrapConcreteTypes`
## 10.0.7
### Patch Changes
- [#6109](https://github.com/ardatan/graphql-tools/pull/6109)
[`074fad4`](https://github.com/ardatan/graphql-tools/commit/074fad4144095fbefe449ced397b7707963bd7aa)
Thanks [@ardatan](https://github.com/ardatan)! - Merge list fields correctly
## 10.0.6
### Patch Changes
- [`af7be09`](https://github.com/ardatan/graphql-tools/commit/af7be099e88777bba376c14ecf191365ed3a89c7)
Thanks [@ardatan](https://github.com/ardatan)! - Hotfix: do not use nullable and nonNullable
prefixes if field names don't match
## 10.0.5
### Patch Changes
- [#6091](https://github.com/ardatan/graphql-tools/pull/6091)
[`9bca9e0`](https://github.com/ardatan/graphql-tools/commit/9bca9e03915a2e12d164e355be9aed389b0de3a4)
Thanks [@User](https://github.com/User), [@User](https://github.com/User)! - If the gateway
receives a query with an overlapping fields for the subschema, it uses aliases to resolve it
correctly.
Let's say subschema A has the following schema;
```graphql
type Query {
}
interface User {
id: ID!
name: String!
}
type Admin implements User {
id: ID!
name: String!
role: String!
}
type Customer implements User {
id: ID!
name: String
email: String
}
```
And let's say the gateway has the following schema instead;
```graphql
type Query {
}
interface User {
id: ID!
name: String!
}
type Admin implements User {
id: ID!
name: String!
role: String!
}
type Customer implements User {
id: ID!
name: String!
email: String!
}
```
In this case, the following query is fine for the gateway but for the subschema, it's not;
```graphql
query {
user {
... on Admin {
id
name # This is nullable in the subschema
role
}
... on Customer {
id
name # This is non-nullable in the subschema
email
}
}
}
```
So the subgraph will throw based on this rule
[OverlappingFieldsCanBeMerged](https://github.com/graphql/graphql-js/blob/main/src/validation/rules/OverlappingFieldsCanBeMergedRule.ts)
To avoid this, the gateway will use aliases to resolve the query correctly. The query will be
transformed to the following;
```graphql
query {
user {
... on Admin {
id
name # This is nullable in the subschema
role
}
... on Customer {
id
name: _nullable_name # This is non-nullable in the subschema
email
}
}
}
```
- [#6092](https://github.com/ardatan/graphql-tools/pull/6092)
[`243c353`](https://github.com/ardatan/graphql-tools/commit/243c353412921cf0063f963ee46b9c63d2f33b41)
Thanks [@ardatan](https://github.com/ardatan)! - If one of the subgraphs are already able to
resolve a nested field as in `parent-entity-call` example's `Category.details` from C's `Product`,
resolve it from there instead of using type merging.
```graphql
query {
product {
category {
details {
# This is coming from C's Product, so resolve it from there instead of Type Merging
id
name
}
}
}
}
```
## 10.0.4
### Patch Changes
- [#5913](https://github.com/ardatan/graphql-tools/pull/5913)
[`83c0af0`](https://github.com/ardatan/graphql-tools/commit/83c0af0713ff2ce55ccfb97a1810ecfecfeab703)
Thanks [@enisdenjo](https://github.com/enisdenjo)! - dependencies updates:
- Updated dependency
[`@graphql-tools/schema@^10.0.2` ↗︎](https://www.npmjs.com/package/@graphql-tools/schema/v/10.0.2)
(from `^10.0.0`, in `dependencies`)
- Updated dependency
[`@graphql-tools/utils@^10.0.13` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/10.0.13)
(from `^10.0.5`, in `dependencies`)
- [#5913](https://github.com/ardatan/graphql-tools/pull/5913)
[`83c0af0`](https://github.com/ardatan/graphql-tools/commit/83c0af0713ff2ce55ccfb97a1810ecfecfeab703)
Thanks [@enisdenjo](https://github.com/enisdenjo)! - No unnecessary inline fragment spreads for
union types
- Updated dependencies
[[`83c0af0`](https://github.com/ardatan/graphql-tools/commit/83c0af0713ff2ce55ccfb97a1810ecfecfeab703),
[`83c0af0`](https://github.com/ardatan/graphql-tools/commit/83c0af0713ff2ce55ccfb97a1810ecfecfeab703),
[`83c0af0`](https://github.com/ardatan/graphql-tools/commit/83c0af0713ff2ce55ccfb97a1810ecfecfeab703)]:
- @graphql-tools/batch-execute@9.0.4
- @graphql-tools/executor@1.2.1
- @graphql-tools/schema@10.0.3
## 10.0.3
### Patch Changes
- [#5572](https://github.com/ardatan/graphql-tools/pull/5572)
[`aadb591f`](https://github.com/ardatan/graphql-tools/commit/aadb591f8cd99560d7adba3d66a193434425b47d)
Thanks [@ardatan](https://github.com/ardatan)! - Fix for wrapping subscription types
## 10.0.2
### Patch Changes
- [#5477](https://github.com/ardatan/graphql-tools/pull/5477)
[`cfd47827`](https://github.com/ardatan/graphql-tools/commit/cfd47827c0e625d1b1894e18260342576d6dd71d)
Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
- Removed dependency
[`value-or-promise@^1.0.12` ↗︎](https://www.npmjs.com/package/value-or-promise/v/1.0.12) (from
`dependencies`)
- [`a59fb765`](https://github.com/ardatan/graphql-tools/commit/a59fb765a1256b914f1728283d793d61b66bdf89)
Thanks [@ardatan](https://github.com/ardatan)! - Optimizations to get better performance in query
planning
- Updated dependencies
[[`a59fb765`](https://github.com/ardatan/graphql-tools/commit/a59fb765a1256b914f1728283d793d61b66bdf89)]:
- @graphql-tools/batch-execute@9.0.1
- @graphql-tools/utils@10.0.5
## 10.0.1
### Patch Changes
- [#5474](https://github.com/ardatan/graphql-tools/pull/5474)
[`f31be313`](https://github.com/ardatan/graphql-tools/commit/f31be313b2af5a7c5bf893f1ce1dc7d36bf5340c)
Thanks [@ardatan](https://github.com/ardatan)! - Optimizations for federation
## 10.0.0
### Major Changes
- [#5274](https://github.com/ardatan/graphql-tools/pull/5274)
[`944a68e8`](https://github.com/ardatan/graphql-tools/commit/944a68e8becf9c86b4c97fd17c372d98a285b955)
Thanks [@ardatan](https://github.com/ardatan)! - Drop Node 14 support. Require Node.js `>= 16`
### Patch Changes
- [`8fba6cc1`](https://github.com/ardatan/graphql-tools/commit/8fba6cc1876e914d587f5b253332aaedbcaa65e6)
Thanks [@ardatan](https://github.com/ardatan)! - Workaround for empty results
- Updated dependencies
[[`944a68e8`](https://github.com/ardatan/graphql-tools/commit/944a68e8becf9c86b4c97fd17c372d98a285b955),
[`944a68e8`](https://github.com/ardatan/graphql-tools/commit/944a68e8becf9c86b4c97fd17c372d98a285b955)]:
- @graphql-tools/batch-execute@9.0.0
- @graphql-tools/executor@1.0.0
- @graphql-tools/schema@10.0.0
- @graphql-tools/utils@10.0.0
## 9.0.35
### Patch Changes
- [#5220](https://github.com/ardatan/graphql-tools/pull/5220)
[`8e80b689`](https://github.com/ardatan/graphql-tools/commit/8e80b6893d2342353731610d5da9db633d806083)
Thanks [@ardatan](https://github.com/ardatan)! - Performance improvements
- Updated dependencies
[[`88244048`](https://github.com/ardatan/graphql-tools/commit/882440487551abcb5bdd4f626f3b56ac2e886f11),
[`8e80b689`](https://github.com/ardatan/graphql-tools/commit/8e80b6893d2342353731610d5da9db633d806083)]:
- @graphql-tools/executor@0.0.20
- @graphql-tools/batch-execute@8.5.22
## 9.0.34
### Patch Changes
- [`2f342e43`](https://github.com/ardatan/graphql-tools/commit/2f342e430ba0d0097d1d8cb31a6abb97ed46f971)
Thanks [@ardatan](https://github.com/ardatan)! - Do not use promises if not async
- Updated dependencies
[[`2f342e43`](https://github.com/ardatan/graphql-tools/commit/2f342e430ba0d0097d1d8cb31a6abb97ed46f971)]:
- @graphql-tools/batch-execute@8.5.21
## 9.0.33
### Patch Changes
- Updated dependencies
[[`05c97eb8`](https://github.com/ardatan/graphql-tools/commit/05c97eb888cd4b1ffbd9adb32722cd5b609292a0),
[`05c97eb8`](https://github.com/ardatan/graphql-tools/commit/05c97eb888cd4b1ffbd9adb32722cd5b609292a0),
[`05c97eb8`](https://github.com/ardatan/graphql-tools/commit/05c97eb888cd4b1ffbd9adb32722cd5b609292a0),
[`f24f018a`](https://github.com/ardatan/graphql-tools/commit/f24f018aa94394766f4201b1964d473d08946bd3)]:
- @graphql-tools/batch-execute@8.5.20
- @graphql-tools/executor@0.0.19
- @graphql-tools/schema@9.0.19
## 9.0.32
### Patch Changes
- Updated dependencies
[[`91a895be`](https://github.com/ardatan/graphql-tools/commit/91a895bea32dc4226da08e8981ded3f55f4c53f3)]:
- @graphql-tools/executor@0.0.18
## 9.0.31
### Patch Changes
- Updated dependencies
[[`1c95368a`](https://github.com/ardatan/graphql-tools/commit/1c95368aea868be537d956ba5e994cde58dfee41)]:
- @graphql-tools/batch-execute@8.5.19
- @graphql-tools/executor@0.0.17
- @graphql-tools/schema@9.0.18
## 9.0.30
### Patch Changes
- Updated dependencies
[[`828fbf93`](https://github.com/ardatan/graphql-tools/commit/828fbf93ff317d00577c9a94402736bac5f4be39)]:
- @graphql-tools/executor@0.0.16
## 9.0.29
### Patch Changes
- [#5131](https://github.com/ardatan/graphql-tools/pull/5131)
[`f26392a6`](https://github.com/ardatan/graphql-tools/commit/f26392a66299956da1e66253b181f85332c93db5)
Thanks [@neumark](https://github.com/neumark)! - Create symbols with Symbol.for() because multiple
copies of delegate cause stitching bugs otherwise.
## 9.0.28
### Patch Changes
- [#5067](https://github.com/ardatan/graphql-tools/pull/5067)
[`492220cb`](https://github.com/ardatan/graphql-tools/commit/492220cbdf240e7abde23af0aabcb8cbc6fd3656)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - dependencies updates:
- Updated dependency
[`@graphql-tools/batch-execute@^8.5.18` ↗︎](https://www.npmjs.com/package/@graphql-tools/batch-execute/v/8.5.18)
(from `8.5.18`, in `dependencies`)
- Updated dependency
[`@graphql-tools/executor@^0.0.14` ↗︎](https://www.npmjs.com/package/@graphql-tools/executor/v/0.0.14)
(from `0.0.14`, in `dependencies`)
- Updated dependency
[`@graphql-tools/schema@^9.0.16` ↗︎](https://www.npmjs.com/package/@graphql-tools/schema/v/9.0.16)
(from `9.0.16`, in `dependencies`)
- Updated dependency
[`@graphql-tools/utils@^9.2.1` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/9.2.1)
(from `9.2.1`, in `dependencies`)
- Updated dependency [`dataloader@^2.2.2` ↗︎](https://www.npmjs.com/package/dataloader/v/2.2.2)
(from `2.2.2`, in `dependencies`)
- Updated dependency [`tslib@^2.5.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.5.0) (from
`~2.5.0`, in `dependencies`)
- Updated dependency
[`value-or-promise@^1.0.12` ↗︎](https://www.npmjs.com/package/value-or-promise/v/1.0.12) (from
`1.0.12`, in `dependencies`)
- Updated dependencies
[[`77c1002e`](https://github.com/ardatan/graphql-tools/commit/77c1002e2165a913508fb505513f9289db4f8cd3)]:
- @graphql-tools/executor@0.0.15
## 9.0.27
### Patch Changes
- [#5055](https://github.com/ardatan/graphql-tools/pull/5055)
[`30bd4d0c`](https://github.com/ardatan/graphql-tools/commit/30bd4d0c10f59147faba925dc0941c731b0532a9)
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency [`dataloader@2.2.2` ↗︎](https://www.npmjs.com/package/dataloader/v/2.2.2)
(from `2.2.1`, in `dependencies`)
- Updated dependencies
[[`30bd4d0c`](https://github.com/ardatan/graphql-tools/commit/30bd4d0c10f59147faba925dc0941c731b0532a9)]:
- @graphql-tools/batch-execute@8.5.18
## 9.0.26
### Patch Changes
- [#5025](https://github.com/ardatan/graphql-tools/pull/5025)
[`b09ea282`](https://github.com/ardatan/graphql-tools/commit/b09ea282f0945fb19f354af57aabddcd23b2a155)
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency [`dataloader@2.2.1` ↗︎](https://www.npmjs.com/package/dataloader/v/2.2.1)
(from `2.1.0`, in `dependencies`)
- Updated dependencies
[[`b09ea282`](https://github.com/ardatan/graphql-tools/commit/b09ea282f0945fb19f354af57aabddcd23b2a155),
[`b5c8f640`](https://github.com/ardatan/graphql-tools/commit/b5c8f6407b74466ed0d2989000458cb59239e9af)]:
- @graphql-tools/batch-execute@8.5.17
- @graphql-tools/utils@9.2.1
- @graphql-tools/executor@0.0.14
- @graphql-tools/schema@9.0.16
## 9.0.25
### Patch Changes
- Updated dependencies
[[`a94217e9`](https://github.com/ardatan/graphql-tools/commit/a94217e920c5d6237471ab6ad4d96cf230984177),
[`62d074be`](https://github.com/ardatan/graphql-tools/commit/62d074be48779b1e096e056ca1233822c421dc99)]:
- @graphql-tools/utils@9.2.0
- @graphql-tools/batch-execute@8.5.16
- @graphql-tools/executor@0.0.13
- @graphql-tools/schema@9.0.15
## 9.0.24
### Patch Changes
- [#4995](https://github.com/ardatan/graphql-tools/pull/4995)
[`772b948a`](https://github.com/ardatan/graphql-tools/commit/772b948ae536ac23520e704b33f450c94252f113)
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency [`tslib@~2.5.0` ↗︎](https://www.npmjs.com/package/tslib/v/2.5.0) (from
`~2.4.0`, in `dependencies`)
## 9.0.23
### Patch Changes
- Updated dependencies []:
- @graphql-tools/schema@9.0.14
## 9.0.22
### Patch Changes
- [#4943](https://github.com/ardatan/graphql-tools/pull/4943)
[`a4d36fcc`](https://github.com/ardatan/graphql-tools/commit/a4d36fccce6113843a55b77c96328727f4c748bc)
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
- Updated dependency
[`value-or-promise@1.0.12` ↗︎](https://www.npmjs.com/package/value-or-promise/v/1.0.12) (from
`1.0.11`, in `dependencies`)
- Updated dependencies
[[`a4d36fcc`](https://github.com/ardatan/graphql-tools/commit/a4d36fccce6113843a55b77c96328727f4c748bc),
[`a4d36fcc`](https://github.com/ardatan/graphql-tools/commit/a4d36fccce6113843a55b77c96328727f4c748bc),
[`a4d36fcc`](https://github.com/ardatan/graphql-tools/commit/a4d36fccce6113843a55b77c96328727f4c748bc),
[`e3ec35ed`](https://github.com/ardatan/graphql-tools/commit/e3ec35ed27d4a329739c8da6be06ce74c8f25591)]:
- @graphql-tools/batch-execute@8.5.15
- @graphql-tools/executor@0.0.12
- @graphql-tools/schema@9.0.13
- @graphql-tools/utils@9.1.4
## 9.0.21
### Patch Changes
- [#4920](https://github.com/ardatan/graphql-tools/pull/4920)
[`13177794`](https://github.com/ardatan/graphql-tools/commit/131777947d111e6a952d9e0e581fd651664101a1)
Thanks [@ardatan](https://github.com/ardatan)! - Handle type merging with union types correctly ->
See https://github.com/ardatan/graphql-tools/issues/4902
## 9.0.20
### Patch Changes
- [#4890](https://github.com/ardatan/graphql-tools/pull/4890)
[`eb6cd8b6`](https://github.com/ardatan/graphql-tools/commit/eb6cd8b65dc72434348c259538b233e57a58eb1a)
Thanks [@ardatan](https://github.com/ardatan)! - Transform provided argument values properly
- [#4890](https://github.com/ardatan/graphql-tools/pull/4890)
[`eb6cd8b6`](https://github.com/ardatan/graphql-tools/commit/eb6cd8b65dc72434348c259538b233e57a58eb1a)
Thanks [@ardatan](https://github.com/ardatan)! - Handle argument definitions correctly during
delegation and transformations
## 9.0.19
### Patch Changes
- [#4887](https://github.com/ardatan/graphql-tools/pull/4887)
[`904fe770`](https://github.com/ardatan/graphql-tools/commit/904fe770a355ee3d79464c3bbf0375d2dcd64759)
Thanks [@ardatan](https://github.com/ardatan)! - Fix handling variables
- Updated dependencies
[[`904fe770`](https://github.com/ardatan/graphql-tools/commit/904fe770a355ee3d79464c3bbf0375d2dcd64759)]:
- @graphql-tools/utils@9.1.3
- @graphql-tools/batch-execute@8.5.14
- @graphql-tools/executor@0.0.11
- @graphql-tools/schema@9.0.12
## 9.0.18
### Patch Changes
- [`13c24883`](https://github.com/ardatan/graphql-tools/commit/13c24883004d5330f7402cb20566e37535c5729b)
Thanks [@ardatan](https://github.com/ardatan)! - Fix handling argument values in gateway request
- [`b5e6459f`](https://github.com/ardatan/graphql-tools/commit/b5e6459f87cd8720457ce9bff38f3dfa0cb3c150)
Thanks [@ardatan](https://github.com/ardatan)! - Show warning only if DEBUG env var is present
- Updated dependencies
[[`13c24883`](https://github.com/ardatan/graphql-tools/commit/13c24883004d5330f7402cb20566e37535c5729b)]:
- @graphql-tools/utils@9.1.2
- @graphql-tools/batch-execute@8.5.13
-