eslint-plugin-graphql
eslint-plugin-graphql copied to clipboard
:vertical_traffic_light: Check your GraphQL query strings against a schema.
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | |---|---| | browserslist | [`4.12.0` -> `4.16.5`](https://renovatebot.com/diffs/npm/browserslist/4.12.0/4.16.5) | ### GitHub Vulnerability Alerts #### [CVE-2021-23364](https://nvd.nist.gov/vuln/detail/CVE-2021-23364) The package browserslist...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | |---|---| | ajv | [`6.10.2` -> `6.12.3`](https://renovatebot.com/diffs/npm/ajv/6.10.2/6.12.3) | ### GitHub Vulnerability Alerts #### [CVE-2020-15366](https://nvd.nist.gov/vuln/detail/CVE-2020-15366) An issue was...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [graphql](https://togithub.com/graphql/graphql-js) | [`15.0.0` -> `15.8.0`](https://renovatebot.com/diffs/npm/graphql/15.0.0/15.8.0) | [](https://docs.renovatebot.com/merge-confidence/)...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [pretty-quick](https://togithub.com/azz/pretty-quick) | [`2.0.1` -> `2.0.2`](https://renovatebot.com/diffs/npm/pretty-quick/2.0.1/2.0.2) | [](https://docs.renovatebot.com/merge-confidence/)...
I'm learning this tool through trial & error. I'm at a point where I understand how to get various [validation rules](https://github.com/apollographql/eslint-plugin-graphql#selecting-validation-rules) to run. However, it's not always clear what their...
This PR: - Updates graphql-config to v4 (^4.0.2) TODO: - [ ] Make sure all of the significant new logic is covered by tests - [x] Rebase your changes on...
Hey guys, thanks for this plugin! Probably going to make our life a lot easier :) I'm having a couple problematic queries that I cannot immediately change in order to...
I am trying to use this plugin to lint multiple schemas (that is, two different graphql services, not two schemas merged into one). Currently, I do something like this ```...
TODO: - [x] Make sure all of the significant new logic is covered by tests - [x] Rebase your changes on master so that they can be merged easily -...
Hello, I use fragments the following way. I have the following files: // `fragments/StatsField.graphql` fragment StatsFields on SongUserStats { id playCount lastPlayed liked } // test.js import StatsFields from './fragments/StatsFields.graphql';...