UNPKG

@jokio/graphql

Version:

High level, pre-configured, GraphQL Server

21 lines (17 loc) 253 B
import GraphQL, { Module } from '@jokio/graphql'; const helloModule: Module = { typeDefs: ` extend type Query { hello: String! } `, resolvers: { Query: { hello: () => 'world' } } } GraphQL.run({ modules: [helloModule], port: 4001 })