Skip to content

Instantly share code, notes, and snippets.

@oxlb
Last active May 21, 2022 06:06
Show Gist options
  • Save oxlb/2e4f1396f93dd5eb09fe2c9510ef4dfd to your computer and use it in GitHub Desktop.
Save oxlb/2e4f1396f93dd5eb09fe2c9510ef4dfd to your computer and use it in GitHub Desktop.
const { knex } = require('./connection');
const { ApolloServer, gql } = require('apollo-server');
const typeDefs = gql`
type Student {
id: ID!
name: String!
}
type Query {
students: [Student]
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment