We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a directive with no argument declared and an arbitrary argument is passed, the rule check is not applied.
This is because know_args is an empty list which return false in if directive_node.arguments and known_args: at Line 63 on /src/graphql/validation/rules/known_argument_names.py
know_args
if directive_node.arguments and known_args:
The text was updated successfully, but these errors were encountered:
ae7ae54
👍 Thank you @Dodobibi for reporting this and pinpointing the problematic code.
Sorry, something went wrong.
No branches or pull requests
If a directive with no argument declared and an arbitrary argument is passed, the rule check is not applied.
This is because
know_args
is an empty list which return false inif directive_node.arguments and known_args:
at Line 63 on /src/graphql/validation/rules/known_argument_names.pyThe text was updated successfully, but these errors were encountered: