Skip to content

Instantly share code, notes, and snippets.

@guncha
guncha / graphql-schema.coffee
Created March 23, 2016 16:39
GraphQL schema example using CoffeeScript
GraphQL = require("graphql")
GraphQLRelay = require("graphql-relay")
GraphQLUtilities = require("graphql/utilities")
__GREETING = "Hello World!"
Root = new GraphQL.GraphQLObjectType
name: "Root"
fields:
hello: