Krishan V
Results
1
issues of
Krishan V
With Django and Graphene users can do the following to exempt the graphql endpoint from CSRF authentication. ``` urlpatterns = [ path("admin/", admin.site.urls), path("graphql", csrf_exempt(GraphQLView.as_view(graphiql=True, schema=schema))), ] ``` How can...