Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

graphql-codegen-typescript-operation-types

Stonepaw90.3kMIT2.0.1TypeScript support: included

GraphQL codegen plugin that generates only the types used in the operations

graphql, codegen, graphql-codegen, gql, typescript

readme

graphql-codegen-typescript-operation-types

This graphql-codegen plugin generates the base TypeScript types used in the graphql operations.

Intended as a drop in replacement for the typescript plugin but only generates the input, enums, and object types utilized in the graphql operations. Use one of @graphql-codegen/typescript or graphql-codegen-typescript-operation-types, not both. This plugin uses the underlying typescript plugin but only outputs used types.

The types generated by this plugin are simple, and refers to the exact structure of your schema.

This plugin is best used in conjunction with the typescript-operations plugin with preResolveTypes: true and setting omitObjectTypes: true. In this configuration this plugin will emit only the enum and input types used in the graphql mutations or queries.

All scalar types are always emitted.

Example

Types only

overwrite: true
schema: 'path/to/schema.gql'

generates:
  path/to/file.ts:
    documents: 'path/to/gql/**/*.graphql'
    plugins:
      - graphql-codegen-typescript-operation-types
    config:
      omitObjectTypes: true

Types and fragments

overwrite: true
schema: 'path/to/schema.gql'

generates:
  path/to/file.ts:
    documents: 'path/to/gql/**/*.graphql'
    config:
      omitObjectTypes: true
      preResolveTypes: true
    plugins:
      - graphql-codegen-typescript-operation-types
      - typescript-operations

changelog

Changelog

2.0.1 (2023-07-04)

Miscellaneous

2.0.0 (2023-07-04)

⚠ BREAKING CHANGES

  • bump versions of graphql codegen dependencies and node engine (#78)

Features

  • bump versions of graphql codegen dependencies and node engine (#78) (a397973)

Miscellaneous

  • allow only direct dependabot updates (c13ba73)

1.2.0 (2022-12-22)

Features

  • bump code generator plugin versions (#46) (8fa5340)

1.1.4 (2022-04-29)

Bug Fixes

1.1.3 (2022-04-27)

Miscellaneous

  • bump @graphql-codegen/typescript version (#10) (1f113b4)

1.1.2 (2022-01-03)

Bug Fixes

1.1.1 (2022-01-01)

Bug Fixes

1.1.0 (2022-01-01)

Features

  • add typescript-operation-types plugin code (ce1026d)
  • fix publish (ef0d8cc)

Bug Fixes