Coder Social home page Coder Social logo

Comments (2)

eddeee888 avatar eddeee888 commented on June 26, 2024

Hi @asharnadeem ,

To achieve what you need, mappers can be used.

Using base plugins

Here's what you can do if you use @graphql-codegen/typescript-resolvers

  1. Create a type that you want to return into a Book type in the schema e.g.
// src/mappers.ts

export type BookMapper = {
  id: string;
  name: string;
}
  1. Then, wire it up in codegen config:
// codegen.ts
import type { CodegenConfig } from '@graphql-codegen/cli';

const config: CodegenConfig = {
  schema: '**/schema.graphql'
  generates: {
    'src/types.generated.ts': {
      plugins: ['typescript', 'typescript-resolvers'],
      config: {
        mappers: {
          Book: './mappers#BookMapper'
        }
      }
    }
  }
}

export default config;
  1. Run codegen and you can now return BookMapper in Query.book

Using Server Preset

Using base plugin can get repetitive and it also doesn't provide runtime safety. We recommend using Server Preset to get a more managed experience so you can focus more on developing features instead of worrying about types.

To set up server preset, here's what you do:

  1. Update codegen config
// codegen.ts
import type { CodegenConfig } from '@graphql-codegen/cli';
import { defineConfig } from '@eddeee888/gcg-typescript-resolver-files';

const config: CodegenConfig = {
  schema: '**/schema.graphql'
  generates: {
    'src/schema': defineConfig(),
}

export default config;
  1. Make sure you schema is in the right module e.g.
# src/schema/schema.graphql
type Query {
  book(id: ID!): Book!
}
# ... other types
  1. Add mappers into schema:
// src/schema/schema.mappers.ts
export type BookMapper = {
  id: string;
  name: string;
}
  1. Run codegen and mappers you can use BookMapper resolver.

Here's the full guide to integrate Server Preset into GraphQL Yoga or Apollo Server

from graphql-code-generator.

eddeee888 avatar eddeee888 commented on June 26, 2024

Hi @asharnadeem , I'll close this issue as it's an expected behaviour. If you have issues using mappers or Server Preset, please create other issues and ping me.

from graphql-code-generator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.