Skip to content

Added rootValue execution. Fixes #15 - #16

Open
faceleg wants to merge 1 commit into
SimonDegraeve:masterfrom
faceleg:master
Open

Added rootValue execution. Fixes #15#16
faceleg wants to merge 1 commit into
SimonDegraeve:masterfrom
faceleg:master

Conversation

@faceleg

@faceleg faceleg commented Oct 17, 2016

Copy link
Copy Markdown

This is to allow the injection of things like User ID's into rootValue from the request, for cases where the /graphql endpoint require authentication.

Example:

server.register({
      register: GraphQL,
      options: {
        route: {
          path: '/graphql',
          config: {
            auth: 'token',
            tags: ['api']
          }
        },
        query: {
          schema: GraphQLSchema,
          graphiql: true,
          rootValue: {
            ip: function (args, request) {
              return request.info.remoteAddress;
            }
          },
          formatError: error => ({
            message: error.message,
            locations: error.locations,
            stack: error.stack
          })
        }
      }
    });

Relevant: http://graphql.org/graphql-js/authentication-and-express-middleware/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant