Skip to content

Instantly share code, notes, and snippets.

@AlecAivazis
Last active March 7, 2019 10:24
Show Gist options
  • Save AlecAivazis/90baee3ada8aa71c7073c8474ed70b01 to your computer and use it in GitHub Desktop.
Save AlecAivazis/90baee3ada8aa71c7073c8474ed70b01 to your computer and use it in GitHub Desktop.
import { makeExecutableSchema } from 'graphql-tools'
const schema = `
type Auction {
itemName: String!
}
type Query {
allAuctions: [Auction!]!
}
`
export default makeExecutableSchema({
typeDefs: schema,
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment