Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 7, 2026

This PR contains the following updates:

Package Change Age Confidence
@graphql-tools/delegate (source) 12.0.212.0.3 age confidence

Release Notes

graphql-hive/gateway (@​graphql-tools/delegate)

v12.0.3

Compare Source

Patch Changes
  • #​1835 dcd8f0e Thanks @​ardatan! - Delegate variable values correctly;

    When delegating requests with variables that include nested arrays, ensure that null values are preserved and passed correctly to the subschema. This fix addresses issues where null values in nested arrays were not handled properly during delegation.

    Let's say we have the following schema;

    makeExecutableSchema({
        typeDefs: /* GraphQL */ `
            type Query {
                test(input: InputType!): [String!]
            }
            input InputType {
                value: [String!]
            }
        `,
        resolvers: {
            Query: {
                test: (_, args) => {
                    // Returns the incoming variable value
                    return args.input.value;
                },
            },
        }
    });

    When delegating a query with a variable like:

    {
        "query": "query Test($value: [String!]) { test(input: { value: $value } ) }",
        "variables": { "value": null }
    }

    And the result was

    {
        "data": {
            "test": []
        }
    }

    But with this fix, the result will correctly be:

    {
        "data": {
            "test": null
        }
    }

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jan 7, 2026
@changeset-bot
Copy link

changeset-bot bot commented Jan 7, 2026

⚠️ No Changeset found

Latest commit: aff6912

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 7, 2026

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Contributor

github-actions bot commented Jan 7, 2026

💻 Website Preview

The latest changes are available as preview in: https://pr-7835.graphql-tools.pages.dev

@renovate renovate bot merged commit afd5f43 into master Jan 7, 2026
15 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch January 7, 2026 10:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant