Dani
Dani
Hey @MrFoxes , I'm working with Django 3 and I haven't noticed this behavior. Could you detail about your JWT settings and the GraphQL query executed?
Hey @MrFoxes , Yes, Graphene's middleware runs for every resolver, I don't think it's an issue if you know how to handle. Is `JWT_ALLOW_ARGUMENT` True in your `GRAPHQL_JWT` settings? Is...
@MrFoxes I need more information: - What is the GraphQL query? You can rename the field names to a,b,c... - What cookies are sent? sessionid? JWT? - Authorization header?
Hey @LinnaViljami , If your schema is private, how are they going to get a JWT token?
Hey @martinsodabi , I'm not sure if I understand the problem. The tokenAuth mutation might throw a different type of exception for inactive users: ```py def get_user_by_payload(payload): ... if user...
Try to downgrade the installed version, it works for me. ```sh pip install django-storages==1.6.6 ```
Please describe the issue in detail.