We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7263485 + 8eb881e commit 0588f89Copy full SHA for 0588f89
graphene_django/views.py
@@ -287,6 +287,8 @@ def get_graphql_params(request, data):
287
raise HttpError(HttpResponseBadRequest('Variables are invalid JSON.'))
288
289
operation_name = request.GET.get('operationName') or data.get('operationName')
290
+ if operation_name == "null":
291
+ operation_name = None
292
293
return query, variables, operation_name, id
294
0 commit comments