Skip to content

Instantly share code, notes, and snippets.

@joaquinacuna
Created November 4, 2020 16:08
Embed
What would you like to do?
# settings.py
INSTALLED_APPS = [
# ...
"graphql_auth",
]
AUTHENTICATION_BACKENDS = [
# remove this
# "graphql_jwt.backends.JSONWebTokenBackend",
# add this
"graphql_auth.backends.GraphQLAuthBackend",
# ...
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment