Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Execute rootValue functions if present #15

Open
faceleg opened this issue Oct 17, 2016 · 0 comments
Open

Execute rootValue functions if present #15

faceleg opened this issue Oct 17, 2016 · 0 comments

Comments

@faceleg
Copy link

faceleg commented Oct 17, 2016

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
          })
        }
      }
    });
``
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

No branches or pull requests

1 participant