You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support for validation rules
* Enable customizing validate max_errors through settings
* Add tests for validation rules
* Add examples for validation rules
* Allow setting validation_rules in class def
* Add tests for validation_rules inherited from parent class
* Make tests for validation rules stricter
Graphene-Django supports query validation by allowing passing a list of validation rules (subclasses of `ValidationRule <https://github.com/graphql-python/graphql-core/blob/v3.2.3/src/graphql/validation/rules/__init__.py>`_ from graphql-core) to the ``validation_rules`` option in ``GraphQLView``.
5
+
6
+
.. code:: python
7
+
8
+
from django.urls import path
9
+
from graphene.validation import DisableIntrospection
0 commit comments