@gallery-so/typescript-operations
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

Hello 👋

This is Gallery's fork of https://github.com/dotansimha/graphql-code-generator. More specifically, a fork of the @graphql-codegen/typescript-oeprations package.

What does this fork do?

We simply add the id field to any type that has it available to match Relay's expectations. See below 👇.

Why might you need this?

If you're using Relay, you may already know that Relay will automatically select an id field if one is available in the schema. It's quite annoying when the generated types spit out by the codegen plugin don't match what Relay is expecting.

How to use this package?

  1. Remove @graphql/typescript-operations
    yarn remove @graphql/typescript-operations
  2. Install @gallery-so/typescript-operations
    yarn add @gallery-so/typescript-operations
  3. Update your codegen.yml file to include the autoSelectId field.
schema: ./schema.graphql
documents: ./src/**/*.{ts,tsx}
generates:
   ./src/__generated__/operations.ts:
config:
   avoidOptionals: true
+  autoSelectId: true
plugins:
  - typescript
- - typescript-operations
+ - "@gallery-so/typescript-operations"

Readme

Keywords

none

Package Sidebar

Install

npm i @gallery-so/typescript-operations

Weekly Downloads

116

Version

0.0.7

License

MIT

Unpacked Size

264 kB

Total Files

33

Last publish

Collaborators

  • gallery-so