Skip to content

Instantly share code, notes, and snippets.

@kluu1
Last active April 2, 2020 10:53
Show Gist options
  • Select an option

  • Save kluu1/e625f146ab5bd2ab2b96c361466fe04d to your computer and use it in GitHub Desktop.

Select an option

Save kluu1/e625f146ab5bd2ab2b96c361466fe04d to your computer and use it in GitHub Desktop.
const { gql } = require('apollo-server');
const typeDefs = gql`
scalar Date
type Orders {
userId: Int!
amount: Int!
createdAt: Date!
}
type Query {
orders: [Orders]
}
`;
module.exports = typeDefs;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment