Skip to content

Instantly share code, notes, and snippets.

View neil-gebbie-smarterley's full-sized avatar

Neil Gebbie neil-gebbie-smarterley

View GitHub Profile
@neil-gebbie-smarterley
neil-gebbie-smarterley / apolloServer.js
Last active December 19, 2020 17:02
Apollo client, apollo server, next js with cookies
const typeDefs = require('./schema/schema')
const someRestAPI = require('./someRestAPI')
const resolvers = require('./resolvers')
const apolloServer = {
typeDefs,
resolvers,
dataSources: () => ({
someRestAPI: new someRestAPI(),
}),