diff --git a/graphene_django/views.py b/graphene_django/views.py index 1ec65988..3897e9d4 100644 --- a/graphene_django/views.py +++ b/graphene_django/views.py @@ -336,12 +336,7 @@ def execute_graphql_request( ) ) - validation_errors = validate( - schema, - document, - self.validation_rules, - graphene_settings.MAX_VALIDATION_ERRORS, - ) + validation_errors = validate(schema, document) if validation_errors: return ExecutionResult(data=None, errors=validation_errors)