Skip to content

Instantly share code, notes, and snippets.

@kingisaac95
Last active September 19, 2017 13:12
Show Gist options
  • Save kingisaac95/d03488c8d1a7ea24fe9ecb10557d3296 to your computer and use it in GitHub Desktop.
Save kingisaac95/d03488c8d1a7ea24fe9ecb10557d3296 to your computer and use it in GitHub Desktop.
DMS Schema v1
const { makeExecutableSchema } = require('graphql-tools');
const typeDefinitions = `
type Document {
id: ID!
title: String!
content: String!
}
type User {
id: ID!
name: String!
username: String!
email: String
}
`;
module.exports = makeExecutableSchema({ typeDefinitions });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment