Tag: django-graphql-jwt
-
header for authentication in django and graphql
0 { "Authorization": "JWT token" } and in graphQL my query is : query{ allStudents{ name roll } } but stil does’t work for me I am expecting to secure my api end point because all will create tokenauth then can access data import graphene from graphene_django.types import DjangoObjectType import graphql_jwt from .models import Student…