graphql-inspector
graphql-inspector copied to clipboard
Validate Command doesn't show in which file we are querying the deprecated field
Issue workflow progress
Progress of the issue based on the Contributor Workflow
- [ ] 1. The issue provides a reproduction available on GitHub, Stackblitz or CodeSandbox
Make sure to fork this template and run
pnpm generatein the terminal.Please make sure the Codegen and plugins version under
package.jsonmatches yours. - [ ] 2. A failing test has been provided
- [ ] 3. A local solution has been provided
- [ ] 4. A pull request is pending review
Describe the bug
We are working on a nuxtjs project where we are using @graphql-codegen/cli to generate our schema and we are trying to use graphql-inspector for validating our documents so we can know if we are querying for any deprecated fields. But the issue we are facing is that the graphql-inspector validate Command detects the deprecated fields but doesn't show in which document we are querying the deprecated field. We have also added this in our CI/CD pipeline which is having the same result. Please provide a solution for this , thanks.
Command line screenshot of actual result:
To Reproduce Steps to reproduce the behavior:
Install these packages:
"@graphql-inspector/ci": "^4.0.3",
"@graphql-inspector/graphql-loader": "^4.0.2",
"@graphql-inspector/url-loader": "^4.0.2",
"@graphql-inspector/validate-command": "^4.0.3",
Add this command to scripts section in package.json :
"graphql:inspect": "graphql-inspector validate \"./src/gql/**/*.graphql\" graphql-endpoint"
Run this script in command line
Expected behavior
It should list all the documents which has the deprecated fields in the query under Warning, This feature is already shown in the documentation , here is the screenshot of documentation for reference:
Environment:
- OS: Windows 11
- "@graphql-inspector/ci": "^4.0.3",
- "@graphql-inspector/graphql-loader": "^4.0.2",
- "@graphql-inspector/url-loader": "^4.0.2",
- "@graphql-inspector/validate-command": "^4.0.3",
graphql:"^16.8.1"- NodeJS:"18.17.1"
Hey @MeetM15, thank you for this new issue.
I guess you find a solution? the path is wrong, have a redundant \
Hey @MeetM15, thank you for this new issue.
I guess you find a solution? the path is wrong, have a redundant
\
Hey ! Haven't found a solution yet , by path do you mean this \"./src/gql/**/*.graphql\ ? I think the path is fine because I tried removing quotes as well , also if I add the --deprecated flag it lists out files under errors , its not working only for the normal case without the flag.