-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
Unknown argument "includeDeprecated" on field "__Directive.args" #2895
Comments
@Betree What version of |
It's the 15.5.0, the script above was implemented directly in the backend project |
Running the query below on the API with {
__schema {
types {
name
fields(includeDeprecated: true) {
isDeprecated
}
}
}
} |
@IvanGoncharov I can confirm this bug on
Looks like that function generates that |
With the update to 15.5.0, we need to implement our own script to fetch the GraphQL schema (
get-graphql-schema
that we were using doesn't seem to be maintained anymore).I'm using the following script to achieve that:
This script works fine without
inputValueDeprecation: true
passed togetIntrospectionQuery
, but whenever I try to add this option the script fails with the following message:Context
Followup on #2834
The text was updated successfully, but these errors were encountered: