Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Created June 2, 2021 14:29
Show Gist options
  • Save bengrunfeld/e07dbcda04aab0265a12b9fbc76fd9e1 to your computer and use it in GitHub Desktop.
Save bengrunfeld/e07dbcda04aab0265a12b9fbc76fd9e1 to your computer and use it in GitHub Desktop.
GraphQL Scalable TypeDefs File
import { gql } from "apollo-server-express";
import { User } from "./User";
const typeDefs = gql`
${User.types}
type Query {
${User.queries}
}
type Mutation {
${User.mutations}
}
`;
export default typeDefs;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment