Skip to content

[FEAT] Support schemas created using graphql package #264

Description

@eddeee888

Is your feature request related to a problem? Please describe.

Problem: Schemas created using graphql is being ignored by Server Preset.

For example, consider this file:

import {
  GraphQLEnumType,
  GraphQLObjectType,
  GraphQLSchema,
  GraphQLString,
} from "graphql";

const languageType = new GraphQLEnumType({
  name: "ISOLanguage",
  values: {
    EN: {
      value: "en",
    },
    ES: {
      value: "es",
    },
    RU: {
      value: "ru",
    },
  },
});
const userType = new GraphQLObjectType({
  name: "User",
  fields: {
    id: { type: GraphQLString },
    name: { type: GraphQLString },
    language: { type: languageType },
  },
});

// Define the Query type
const queryType = new GraphQLObjectType({
  name: "Query",
  fields: {
    user: {
      type: userType,
      // `args` describes the arguments that the `user` query accepts
      args: {
        id: { type: GraphQLString },
      },
      resolve: (_, { id }) => {
        return id;
      },
    },
  },
});

const schema = new GraphQLSchema({
  query: queryType,
});

export { schema };
export default schema;

Running codegen with Server Preset results in the following error:

Empty Sources. Make sure schema files are parsed correctly.

Describe the solution you'd like

Support schemas created from graphql package

Related: dotansimha/graphql-code-generator#9932

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions