github dotansimha/graphql-code-generator release-1781617333413
June 16, 2026

2 hours ago

@graphql-codegen/cli@7.1.3

Patch Changes

  • #10335
    3280ace
    Thanks @Diluka! - Fix graphql-config loading order to correctly
    detect codegen projects

    Previously, a graphql-config file like this failed:

    projects:
      default:
        schema: 'default/schema.graphql'
      project1:
        schema: 'project1/schema.graphql'
        extensions:
          codegen:
            generates:
              'project1/__generated__/types.ts':
                plugins: ['typescript']

    This is because the default project doesn't have a codegen extension, which caused previous
    logic to short circuit before reading project1's config.

    The fix reads every named project first, before reading the default project to exhaustively go
    through every single project.

Don't miss a new graphql-code-generator release

NewReleases is sending notifications on new releases.