-
Notifications
You must be signed in to change notification settings - Fork 139
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
How to get request headers when resolving field? #59
Comments
Oh, looks like from flask import request
def resolve_latest_snapshot(self, info: ResolveInfo, org_id: Optional[int] = None) -> models.Snapshot:
print(request.headers)
# more stuff works. I wonder if there's a better, more graphene-y solution... |
Looks like So probably |
Oh yup, you're right. I was overriding it but now I've added it back in. Thanks!
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
…On Friday, April 26, 2019 2:10 AM, Petr Messner ***@***.***> wrote:
Looks like context is request (if you haven't overrided it): https://github.com/graphql-python/flask-graphql/blob/master/flask_graphql/graphqlview.py#L41
So probably info.context is request, but I haven't verified it.
—
You are receiving this because you authored the thread.
Reply to this email directly, [view it on GitHub](#59 (comment)), or [mute the thread](https://github.com/notifications/unsubscribe-auth/AAPFDBV3M6ZLBK7PMCJTYGTPSHQZTANCNFSM4HHAYEBA).
|
When trying to access "graphql.error.located_error.GraphQLLocatedError: Working outside of request context" Pretty simple setup:
|
What's the right way to get request header when resolving a query/mutation? A related issue, #17, lead me to believe that
info.context.headers
will work but I'm finding that doesn't exist when I try to print it:with a resolver of:
I have flask-graphql version 2.0.0.
EDIT: other related packages I have:
The text was updated successfully, but these errors were encountered: