kamilkisiela / graphql-inspector

🕵️‍♀️ Validate schema, get schema change notifications, validate operations, find breaking changes, look for similar types, schema coverage
https://the-guild.dev/graphql/inspector
MIT License
1.64k stars 185 forks source link

Validate Command doesn't show in which file we are querying the deprecated field #2684

Open MeetM15 opened 9 months ago

MeetM15 commented 9 months ago

Issue workflow progress

Progress of the issue based on the Contributor Workflow


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: image

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: image

Environment:

TuvalSimha commented 9 months ago

Hey @MeetM15, thank you for this new issue.

I guess you find a solution? the path is wrong, have a redundant \

MeetM15 commented 9 months ago

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.

image