Skip to content

Instantly share code, notes, and snippets.

@hurali97
Created July 20, 2019 14:40
Show Gist options
  • Save hurali97/ecdfdfdc25f2825fa01750e38167832c to your computer and use it in GitHub Desktop.
Save hurali97/ecdfdfdc25f2825fa01750e38167832c to your computer and use it in GitHub Desktop.
Schema
const { gql } = require('apollo-server-express');
const schema = gql`
type Query {
getnames: [Names!],
}
type Names{
id: ID!,
name: String!
}
`;
module.exports = schema;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment