From 37ebd6309b65d05067220b402d583f815cf98e2e Mon Sep 17 00:00:00 2001 From: Josh Warwick Date: Tue, 16 May 2023 20:26:05 +0100 Subject: [PATCH] follow main removing validate call --- graphene_django/views.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/graphene_django/views.py b/graphene_django/views.py index 7933c64..7386e6d 100644 --- a/graphene_django/views.py +++ b/graphene_django/views.py @@ -665,10 +665,6 @@ class AsyncGraphQLView(GraphQLView): ) ) - validation_errors = validate(self.schema.graphql_schema, document) - if validation_errors: - return ExecutionResult(data=None, errors=validation_errors) - try: extra_options = {} if self.execution_context_class: