mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-22 17:47:12 +03:00
Access to batch endpoint without parameters fixed
ValueError: max() arg is an empty sequence exception fixed
This commit is contained in:
parent
f35e445963
commit
459d7df42b
|
@ -106,7 +106,7 @@ class GraphQLView(View):
|
|||
if self.batch:
|
||||
responses = [self.get_response(request, entry) for entry in data]
|
||||
result = '[{}]'.format(','.join([response[0] for response in responses]))
|
||||
status_code = max(responses, key=lambda response: response[1])[1]
|
||||
status_code = responses and max(responses, key=lambda response: response[1])[1] or 200
|
||||
else:
|
||||
result, status_code = self.get_response(request, data, show_graphiql)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user