Skip to content

Instantly share code, notes, and snippets.

@shailen-naidoo
Created April 20, 2019 10:30
Show Gist options
  • Save shailen-naidoo/3470cfa0df28732f318af91293be469c to your computer and use it in GitHub Desktop.
Save shailen-naidoo/3470cfa0df28732f318af91293be469c to your computer and use it in GitHub Desktop.
const { gql } = require('apollo-server-express');
const Schema = gql`
type Query {
person: Person!
}
type Person {
name: String!
surname: String!
}
`;
module.exports = { Schema };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment