@graphql-eslint/eslint-plugin 3.14.0-alpha-20221222211011-998efb7 → 3.14.0-alpha-20221222211346-788e7eb

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,9 @@ exports.rule = {
24
24
  {
25
25
  user {
26
26
  ...UserFields
27
+ friends {
28
+ ...UserFields
29
+ }
27
30
  }
28
31
  }
29
32
  `,
@@ -38,9 +41,6 @@ exports.rule = {
38
41
  {
39
42
  user {
40
43
  ...UserFields
41
- friends {
42
- ...UserFields
43
- }
44
44
  }
45
45
  }
46
46
  `,
@@ -22,6 +22,9 @@ fragment UserFields on User {
22
22
  {
23
23
  user {
24
24
  ...UserFields
25
+ friends {
26
+ ...UserFields
27
+ }
25
28
  }
26
29
  }
27
30
  ```
@@ -38,9 +41,6 @@ fragment UserFields on User {
38
41
  {
39
42
  user {
40
43
  ...UserFields
41
- friends {
42
- ...UserFields
43
- }
44
44
  }
45
45
  }
46
46
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-eslint/eslint-plugin",
3
- "version": "3.14.0-alpha-20221222211011-998efb7",
3
+ "version": "3.14.0-alpha-20221222211346-788e7eb",
4
4
  "description": "GraphQL plugin for ESLint",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {