From ec982ac50b2c79dc956f4e59fde5cf40092af0d8 Mon Sep 17 00:00:00 2001 From: Aryan Iyappan <69184573+aryan340@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:22:04 +0530 Subject: [PATCH] update docs typo --- docs/execution/queryvalidation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/execution/queryvalidation.rst b/docs/execution/queryvalidation.rst index 35f3577e..2d58f7ab 100644 --- a/docs/execution/queryvalidation.rst +++ b/docs/execution/queryvalidation.rst @@ -56,7 +56,7 @@ perform validation, your validator class should define one or more of enter_* an enter/leave items as well as details on function documentation, please see contents of the visitor module. To make validation fail, you should call validator's report_error method with the instance of GraphQLError describing failure reason. Here is an example query validator that visits field definitions in GraphQL query and fails query validation -if any of those fields are introspection fields: +if any of those fields are blacklisted fields: .. code:: python from graphql import GraphQLError