Skip to content

June 16, 2026

Latest

Choose a tag to compare

@github-actions github-actions released this 16 Jun 13:42
2670296

@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.