hapi-graphql-2 v2.0.4
GraphQL Hapi Plugin
Create a GraphQL HTTP server with Hapi. Original code from SimonDegraeves hapi-graphql.
npm install --save hapi-graphql-2If you are using yarn
yarn add hapi-graphql-2Example
const Hapi = require('hapi');
const GraphQL = require('hapi-graphql-2');
const {GraphQLSchema} = require('graphql');
const server = new Hapi.Server({
port: 3000
});
const TestSchema = new GraphQLSchema({});
await server.register({
plugin: GraphQL,
options: {
query: {
# options, see below
},
// OR
//
// query: (request) => ({
// # options, see below
// }),
route: {
path: '/graphql',
config: {}
}
}
});
await server.start();
console.log('Server running at:', server.info.uri);Options
The options key of query accepts the following:
schema: AGraphQLSchemainstance fromgraphql-js. Aschemamust be provided.context: A value to pass as thecontextto thegraphql()function fromgraphql-js.rootValue: A value to pass as therootValueto thegraphql()function fromgraphql-js.pretty: Iftrue, any JSON response will be pretty-printed.formatError: An optional function which will be used to format any errors produced by fulfilling a GraphQL operation. If no function is provided, GraphQL's default spec-compliantformatErrorfunction will be used.validationRules: Optional additional validation rules queries must satisfy in addition to those defined by the GraphQL spec.graphiql: Iftrue, may present GraphiQL when loaded directly from a browser (a useful tool for debugging and exploration).
Debugging
During development, it's useful to get more information from errors, such as
stack traces. Providing a function to formatError enables this:
formatError: error => ({
message: error.message,
locations: error.locations,
stack: error.stack
})