Skip to content

Instantly share code, notes, and snippets.

const { ApolloServer, gql } = require('apollo-server');
const resolvers = require("./resolvers");
const typeDefs = gql`
type Post {
title: String!
authorId: String!
}