@graphql-eslint/eslint-plugin 4.0.0-alpha.6 → 4.0.0-alpha.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. package/cjs/cache.js +8 -36
  2. package/cjs/chunk-UIAXBAMD.js +8 -0
  3. package/cjs/configs/index.d.cts +15 -5
  4. package/cjs/configs/index.js +31 -45
  5. package/cjs/configs/operations-all.js +33 -26
  6. package/cjs/configs/operations-recommended.js +59 -52
  7. package/cjs/configs/schema-all.js +29 -22
  8. package/cjs/configs/schema-recommended.js +73 -66
  9. package/cjs/configs/schema-relay.js +17 -10
  10. package/cjs/documents.js +12 -37
  11. package/cjs/estree-converter/converter.js +16 -30
  12. package/cjs/estree-converter/index.js +3 -23
  13. package/cjs/estree-converter/types.js +1 -14
  14. package/cjs/estree-converter/utils.js +22 -40
  15. package/cjs/graphql-config.js +15 -41
  16. package/cjs/index.d.cts +164 -9
  17. package/cjs/index.js +24 -41
  18. package/cjs/meta.js +5 -25
  19. package/cjs/parser.js +29 -49
  20. package/cjs/processor.js +22 -35
  21. package/{esm/rules/alphabetize.d.ts → cjs/rules/alphabetize/index.d.cts} +4 -4
  22. package/cjs/rules/{alphabetize.js → alphabetize/index.js} +69 -77
  23. package/{esm/rules/description-style.d.ts → cjs/rules/description-style/index.d.cts} +3 -3
  24. package/cjs/rules/{description-style.js → description-style/index.js} +7 -27
  25. package/cjs/rules/graphql-js-validation.js +93 -70
  26. package/cjs/rules/index.d.cts +5 -5
  27. package/cjs/rules/index.js +74 -60
  28. package/{esm/rules/input-name.d.ts → cjs/rules/input-name/index.d.cts} +3 -3
  29. package/cjs/rules/{input-name.js → input-name/index.js} +10 -28
  30. package/{esm/rules/lone-executable-definition.d.ts → cjs/rules/lone-executable-definition/index.d.cts} +3 -3
  31. package/cjs/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +13 -32
  32. package/cjs/rules/{match-document-filename.d.cts → match-document-filename/index.d.cts} +4 -4
  33. package/cjs/rules/{match-document-filename.js → match-document-filename/index.js} +20 -34
  34. package/{esm/rules/naming-convention.d.ts → cjs/rules/naming-convention/index.d.cts} +3 -3
  35. package/cjs/rules/{naming-convention.js → naming-convention/index.js} +41 -54
  36. package/cjs/rules/no-anonymous-operations/index.d.cts +13 -0
  37. package/cjs/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +9 -28
  38. package/cjs/rules/{no-deprecated.d.cts → no-deprecated/index.d.cts} +3 -3
  39. package/cjs/rules/{no-deprecated.js → no-deprecated/index.js} +11 -30
  40. package/cjs/rules/no-duplicate-fields/index.d.cts +13 -0
  41. package/cjs/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +8 -28
  42. package/cjs/rules/{no-hashtag-description.d.cts → no-hashtag-description/index.d.cts} +3 -3
  43. package/cjs/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +11 -31
  44. package/cjs/rules/no-one-place-fragments/index.d.cts +13 -0
  45. package/cjs/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +11 -29
  46. package/cjs/rules/{no-root-type.d.cts → no-root-type/index.d.cts} +3 -3
  47. package/cjs/rules/{no-root-type.js → no-root-type/index.js} +9 -29
  48. package/cjs/rules/no-scalar-result-type-on-mutation/index.d.cts +13 -0
  49. package/cjs/rules/no-scalar-result-type-on-mutation/index.js +69 -0
  50. package/cjs/rules/no-typename-prefix/index.d.cts +13 -0
  51. package/cjs/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +5 -25
  52. package/cjs/rules/no-unreachable-types/index.d.cts +13 -0
  53. package/cjs/rules/no-unreachable-types/index.js +155 -0
  54. package/cjs/rules/no-unused-fields/index.d.cts +13 -0
  55. package/cjs/rules/{no-unused-fields.js → no-unused-fields/index.js} +12 -30
  56. package/{esm/rules/relay-arguments.d.ts → cjs/rules/relay-arguments/index.d.cts} +3 -3
  57. package/cjs/rules/{relay-arguments.js → relay-arguments/index.js} +11 -30
  58. package/{esm/rules/relay-connection-types.d.ts → cjs/rules/relay-connection-types/index.d.cts} +3 -3
  59. package/cjs/rules/{relay-connection-types.js → relay-connection-types/index.js} +19 -40
  60. package/{esm/rules/relay-edge-types.d.ts → cjs/rules/relay-edge-types/index.d.cts} +3 -3
  61. package/cjs/rules/{relay-edge-types.js → relay-edge-types/index.js} +30 -43
  62. package/cjs/rules/relay-page-info/index.d.cts +13 -0
  63. package/cjs/rules/{relay-page-info.js → relay-page-info/index.js} +12 -30
  64. package/{esm/rules/require-deprecation-date.d.ts → cjs/rules/require-deprecation-date/index.d.cts} +3 -3
  65. package/cjs/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +13 -32
  66. package/cjs/rules/require-deprecation-reason/index.d.cts +13 -0
  67. package/cjs/rules/require-deprecation-reason/index.js +66 -0
  68. package/cjs/rules/{require-description.d.cts → require-description/index.d.cts} +3 -3
  69. package/cjs/rules/{require-description.js → require-description/index.js} +30 -44
  70. package/cjs/rules/require-field-of-type-query-in-mutation-result/index.d.cts +13 -0
  71. package/cjs/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +10 -29
  72. package/cjs/rules/require-import-fragment/index.d.cts +13 -0
  73. package/cjs/rules/{require-import-fragment.js → require-import-fragment/index.js} +11 -38
  74. package/cjs/rules/require-nullable-fields-with-oneof/index.d.cts +13 -0
  75. package/cjs/rules/require-nullable-fields-with-oneof/index.js +62 -0
  76. package/cjs/rules/require-nullable-result-in-root/index.d.cts +13 -0
  77. package/cjs/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +12 -31
  78. package/cjs/rules/{require-selections.d.cts → require-selections/index.d.cts} +3 -3
  79. package/cjs/rules/{require-selections.js → require-selections/index.js} +38 -43
  80. package/cjs/rules/require-type-pattern-with-oneof/index.d.cts +13 -0
  81. package/cjs/rules/require-type-pattern-with-oneof/index.js +63 -0
  82. package/{esm/rules/selection-set-depth.d.ts → cjs/rules/selection-set-depth/index.d.cts} +3 -3
  83. package/cjs/rules/{selection-set-depth.js → selection-set-depth/index.js} +15 -41
  84. package/cjs/rules/{strict-id-in-types.d.cts → strict-id-in-types/index.d.cts} +3 -3
  85. package/cjs/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +26 -39
  86. package/cjs/rules/unique-enum-value-names/index.d.cts +13 -0
  87. package/cjs/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +10 -29
  88. package/{esm/rules/unique-fragment-name.d.ts → cjs/rules/unique-fragment-name/index.d.cts} +3 -3
  89. package/cjs/rules/unique-fragment-name/index.js +87 -0
  90. package/cjs/rules/unique-operation-name/index.d.cts +13 -0
  91. package/cjs/rules/{unique-operation-name.js → unique-operation-name/index.js} +7 -27
  92. package/cjs/schema.js +11 -36
  93. package/cjs/siblings.js +17 -33
  94. package/cjs/types.js +1 -14
  95. package/cjs/utils.d.cts +2 -2
  96. package/cjs/utils.js +94 -115
  97. package/esm/configs/index.d.ts +15 -5
  98. package/esm/configs/index.js +17 -7
  99. package/esm/configs/operations-all.js +1 -1
  100. package/esm/index.d.ts +164 -9
  101. package/esm/index.js +9 -2
  102. package/esm/meta.js +1 -1
  103. package/{cjs/rules/alphabetize.d.cts → esm/rules/alphabetize/index.d.ts} +4 -4
  104. package/esm/rules/{alphabetize.js → alphabetize/index.js} +26 -10
  105. package/{cjs/rules/description-style.d.cts → esm/rules/description-style/index.d.ts} +3 -3
  106. package/esm/rules/{description-style.js → description-style/index.js} +2 -2
  107. package/esm/rules/index.d.ts +5 -5
  108. package/esm/rules/index.js +34 -34
  109. package/{cjs/rules/input-name.d.cts → esm/rules/input-name/index.d.ts} +3 -3
  110. package/esm/rules/{input-name.js → input-name/index.js} +1 -1
  111. package/{cjs/rules/lone-executable-definition.d.cts → esm/rules/lone-executable-definition/index.d.ts} +3 -3
  112. package/esm/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +2 -2
  113. package/esm/rules/{match-document-filename.d.ts → match-document-filename/index.d.ts} +4 -4
  114. package/esm/rules/{match-document-filename.js → match-document-filename/index.js} +2 -2
  115. package/{cjs/rules/naming-convention.d.cts → esm/rules/naming-convention/index.d.ts} +3 -3
  116. package/esm/rules/{naming-convention.js → naming-convention/index.js} +2 -2
  117. package/{cjs/rules/no-anonymous-operations.d.cts → esm/rules/no-anonymous-operations/index.d.ts} +3 -3
  118. package/esm/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +2 -2
  119. package/esm/rules/{no-deprecated.d.ts → no-deprecated/index.d.ts} +3 -3
  120. package/esm/rules/{no-deprecated.js → no-deprecated/index.js} +2 -2
  121. package/{cjs/rules/no-one-place-fragments.d.cts → esm/rules/no-duplicate-fields/index.d.ts} +3 -3
  122. package/esm/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +1 -1
  123. package/esm/rules/{no-hashtag-description.d.ts → no-hashtag-description/index.d.ts} +3 -3
  124. package/esm/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +2 -2
  125. package/{cjs/rules/no-duplicate-fields.d.cts → esm/rules/no-one-place-fragments/index.d.ts} +3 -3
  126. package/esm/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +2 -2
  127. package/esm/rules/{no-root-type.d.ts → no-root-type/index.d.ts} +3 -3
  128. package/esm/rules/{no-root-type.js → no-root-type/index.js} +2 -2
  129. package/{cjs/rules/no-scalar-result-type-on-mutation.d.cts → esm/rules/no-scalar-result-type-on-mutation/index.d.ts} +3 -3
  130. package/esm/rules/{no-scalar-result-type-on-mutation.js → no-scalar-result-type-on-mutation/index.js} +2 -2
  131. package/esm/rules/no-typename-prefix/index.d.ts +13 -0
  132. package/esm/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +1 -1
  133. package/esm/rules/no-unreachable-types/index.d.ts +13 -0
  134. package/esm/rules/{no-unreachable-types.js → no-unreachable-types/index.js} +3 -3
  135. package/esm/rules/no-unused-fields/index.d.ts +13 -0
  136. package/esm/rules/{no-unused-fields.js → no-unused-fields/index.js} +3 -3
  137. package/{cjs/rules/relay-arguments.d.cts → esm/rules/relay-arguments/index.d.ts} +3 -3
  138. package/esm/rules/{relay-arguments.js → relay-arguments/index.js} +2 -2
  139. package/{cjs/rules/relay-connection-types.d.cts → esm/rules/relay-connection-types/index.d.ts} +3 -3
  140. package/esm/rules/{relay-connection-types.js → relay-connection-types/index.js} +1 -1
  141. package/{cjs/rules/relay-edge-types.d.cts → esm/rules/relay-edge-types/index.d.ts} +3 -3
  142. package/esm/rules/{relay-edge-types.js → relay-edge-types/index.js} +2 -2
  143. package/esm/rules/relay-page-info/index.d.ts +13 -0
  144. package/esm/rules/{relay-page-info.js → relay-page-info/index.js} +3 -3
  145. package/{cjs/rules/require-deprecation-date.d.cts → esm/rules/require-deprecation-date/index.d.ts} +3 -3
  146. package/esm/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +3 -3
  147. package/esm/rules/require-deprecation-reason/index.d.ts +13 -0
  148. package/esm/rules/{require-deprecation-reason.js → require-deprecation-reason/index.js} +3 -3
  149. package/esm/rules/{require-description.d.ts → require-description/index.d.ts} +3 -3
  150. package/esm/rules/{require-description.js → require-description/index.js} +2 -2
  151. package/esm/rules/require-field-of-type-query-in-mutation-result/index.d.ts +13 -0
  152. package/esm/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +2 -2
  153. package/esm/rules/require-import-fragment/index.d.ts +13 -0
  154. package/esm/rules/{require-import-fragment.js → require-import-fragment/index.js} +2 -2
  155. package/esm/rules/require-nullable-fields-with-oneof/index.d.ts +13 -0
  156. package/esm/rules/{require-nullable-fields-with-oneof.js → require-nullable-fields-with-oneof/index.js} +2 -2
  157. package/esm/rules/require-nullable-result-in-root/index.d.ts +13 -0
  158. package/esm/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +2 -2
  159. package/esm/rules/{require-selections.d.ts → require-selections/index.d.ts} +3 -3
  160. package/esm/rules/{require-selections.js → require-selections/index.js} +3 -4
  161. package/esm/rules/require-type-pattern-with-oneof/index.d.ts +13 -0
  162. package/esm/rules/{require-type-pattern-with-oneof.js → require-type-pattern-with-oneof/index.js} +2 -2
  163. package/{cjs/rules/selection-set-depth.d.cts → esm/rules/selection-set-depth/index.d.ts} +3 -3
  164. package/esm/rules/{selection-set-depth.js → selection-set-depth/index.js} +2 -2
  165. package/esm/rules/{strict-id-in-types.d.ts → strict-id-in-types/index.d.ts} +3 -3
  166. package/esm/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +2 -2
  167. package/esm/rules/unique-enum-value-names/index.d.ts +13 -0
  168. package/esm/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +2 -2
  169. package/{cjs/rules/unique-fragment-name.d.cts → esm/rules/unique-fragment-name/index.d.ts} +3 -3
  170. package/esm/rules/{unique-fragment-name.js → unique-fragment-name/index.js} +3 -3
  171. package/esm/rules/unique-operation-name/index.d.ts +13 -0
  172. package/esm/rules/{unique-operation-name.js → unique-operation-name/index.js} +2 -2
  173. package/esm/utils.d.ts +2 -2
  174. package/esm/utils.js +39 -16
  175. package/index.browser.js +115 -67
  176. package/package.json +2 -2
  177. package/cjs/rules/no-scalar-result-type-on-mutation.js +0 -88
  178. package/cjs/rules/no-typename-prefix.d.cts +0 -13
  179. package/cjs/rules/no-unreachable-types.d.cts +0 -13
  180. package/cjs/rules/no-unreachable-types.js +0 -175
  181. package/cjs/rules/no-unused-fields.d.cts +0 -13
  182. package/cjs/rules/relay-page-info.d.cts +0 -13
  183. package/cjs/rules/require-deprecation-reason.d.cts +0 -13
  184. package/cjs/rules/require-deprecation-reason.js +0 -85
  185. package/cjs/rules/require-field-of-type-query-in-mutation-result.d.cts +0 -13
  186. package/cjs/rules/require-import-fragment.d.cts +0 -13
  187. package/cjs/rules/require-nullable-fields-with-oneof.d.cts +0 -13
  188. package/cjs/rules/require-nullable-fields-with-oneof.js +0 -81
  189. package/cjs/rules/require-nullable-result-in-root.d.cts +0 -13
  190. package/cjs/rules/require-type-pattern-with-oneof.d.cts +0 -13
  191. package/cjs/rules/require-type-pattern-with-oneof.js +0 -83
  192. package/cjs/rules/unique-enum-value-names.d.cts +0 -13
  193. package/cjs/rules/unique-fragment-name.js +0 -106
  194. package/cjs/rules/unique-operation-name.d.cts +0 -13
  195. package/esm/rules/no-anonymous-operations.d.ts +0 -13
  196. package/esm/rules/no-duplicate-fields.d.ts +0 -13
  197. package/esm/rules/no-one-place-fragments.d.ts +0 -13
  198. package/esm/rules/no-scalar-result-type-on-mutation.d.ts +0 -13
  199. package/esm/rules/no-typename-prefix.d.ts +0 -13
  200. package/esm/rules/no-unreachable-types.d.ts +0 -13
  201. package/esm/rules/no-unused-fields.d.ts +0 -13
  202. package/esm/rules/relay-page-info.d.ts +0 -13
  203. package/esm/rules/require-deprecation-reason.d.ts +0 -13
  204. package/esm/rules/require-field-of-type-query-in-mutation-result.d.ts +0 -13
  205. package/esm/rules/require-import-fragment.d.ts +0 -13
  206. package/esm/rules/require-nullable-fields-with-oneof.d.ts +0 -13
  207. package/esm/rules/require-nullable-result-in-root.d.ts +0 -13
  208. package/esm/rules/require-type-pattern-with-oneof.d.ts +0 -13
  209. package/esm/rules/unique-enum-value-names.d.ts +0 -13
  210. package/esm/rules/unique-operation-name.d.ts +0 -13
@@ -1,4 +1,4 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { Kind } from "graphql";
3
3
  const RULE_ID = "no-duplicate-fields", rule = {
4
4
  meta: {
@@ -1,11 +1,11 @@
1
- import { GraphQLESLintRule } from '../types.js';
1
+ import { GraphQLESLintRule } from '../../types.js';
2
2
  import 'eslint';
3
3
  import 'estree';
4
4
  import 'graphql';
5
5
  import 'graphql-config';
6
6
  import 'json-schema-to-ts';
7
- import '../estree-converter/types.js';
8
- import '../siblings.js';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const RULE_ID = "HASHTAG_COMMENT";
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { TokenKind } from "graphql";
3
- import { getNodeName } from "../utils.js";
3
+ import { getNodeName } from "../../utils.js";
4
4
  const RULE_ID = "HASHTAG_COMMENT", rule = {
5
5
  meta: {
6
6
  type: "suggestion",
@@ -1,11 +1,11 @@
1
- import { GraphQLESLintRule } from '../types.cjs';
1
+ import { GraphQLESLintRule } from '../../types.js';
2
2
  import 'eslint';
3
3
  import 'estree';
4
4
  import 'graphql';
5
5
  import 'graphql-config';
6
6
  import 'json-schema-to-ts';
7
- import '../estree-converter/types.cjs';
8
- import '../siblings.cjs';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const rule: GraphQLESLintRule;
@@ -1,7 +1,7 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { relative } from "node:path";
3
3
  import { visit } from "graphql";
4
- import { CWD, requireSiblingsOperations } from "../utils.js";
4
+ import { CWD, requireSiblingsOperations } from "../../utils.js";
5
5
  const RULE_ID = "no-one-place-fragments", rule = {
6
6
  meta: {
7
7
  type: "suggestion",
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.js';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.js';
8
- import '../siblings.js';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -1,5 +1,5 @@
1
- import "../chunk-UIAXBAMD.js";
2
- import { ARRAY_DEFAULT_OPTIONS, requireGraphQLSchemaFromContext, truthy } from "../utils.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
+ import { ARRAY_DEFAULT_OPTIONS, requireGraphQLSchemaFromContext, truthy } from "../../utils.js";
3
3
  const schema = {
4
4
  type: "array",
5
5
  minItems: 1,
@@ -1,11 +1,11 @@
1
- import { GraphQLESLintRule } from '../types.cjs';
1
+ import { GraphQLESLintRule } from '../../types.js';
2
2
  import 'eslint';
3
3
  import 'estree';
4
4
  import 'graphql';
5
5
  import 'graphql-config';
6
6
  import 'json-schema-to-ts';
7
- import '../estree-converter/types.cjs';
8
- import '../siblings.cjs';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const rule: GraphQLESLintRule;
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { isScalarType, Kind } from "graphql";
3
- import { getNodeName, requireGraphQLSchemaFromContext } from "../utils.js";
3
+ import { getNodeName, requireGraphQLSchemaFromContext } from "../../utils.js";
4
4
  const RULE_ID = "no-scalar-result-type-on-mutation", rule = {
5
5
  meta: {
6
6
  type: "suggestion",
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,4 +1,4 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  const NO_TYPENAME_PREFIX = "NO_TYPENAME_PREFIX", rule = {
3
3
  meta: {
4
4
  type: "suggestion",
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,4 +1,4 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import {
3
3
  DirectiveLocation,
4
4
  isInterfaceType,
@@ -6,8 +6,8 @@ import {
6
6
  visit
7
7
  } from "graphql";
8
8
  import lowerCase from "lodash.lowercase";
9
- import { ModuleCache } from "../cache.js";
10
- import { getTypeName, requireGraphQLSchemaFromContext } from "../utils.js";
9
+ import { ModuleCache } from "../../cache.js";
10
+ import { getTypeName, requireGraphQLSchemaFromContext } from "../../utils.js";
11
11
  const RULE_ID = "no-unreachable-types", KINDS = [
12
12
  Kind.DIRECTIVE_DEFINITION,
13
13
  Kind.OBJECT_TYPE_DEFINITION,
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,7 +1,7 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { TypeInfo, visit, visitWithTypeInfo } from "graphql";
3
- import { ModuleCache } from "../cache.js";
4
- import { requireGraphQLSchemaFromContext, requireSiblingsOperations } from "../utils.js";
3
+ import { ModuleCache } from "../../cache.js";
4
+ import { requireGraphQLSchemaFromContext, requireSiblingsOperations } from "../../utils.js";
5
5
  const RULE_ID = "no-unused-fields", usedFieldsCache = new ModuleCache();
6
6
  function getUsedFields(schema, operations) {
7
7
  const cachedValue = usedFieldsCache.get(schema);
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.cjs';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.cjs';
8
- import '../siblings.cjs';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { isScalarType, Kind } from "graphql";
3
- import { requireGraphQLSchemaFromContext } from "../utils.js";
3
+ import { requireGraphQLSchemaFromContext } from "../../utils.js";
4
4
  const RULE_ID = "relay-arguments", MISSING_ARGUMENTS = "MISSING_ARGUMENTS", schema = {
5
5
  type: "array",
6
6
  maxItems: 1,
@@ -1,11 +1,11 @@
1
1
  import { Kind } from 'graphql';
2
- import { GraphQLESLintRule } from '../types.cjs';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql-config';
6
6
  import 'json-schema-to-ts';
7
- import '../estree-converter/types.cjs';
8
- import '../siblings.cjs';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const NON_OBJECT_TYPES: Kind[];
@@ -1,4 +1,4 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { Kind } from "graphql";
3
3
  const MUST_BE_OBJECT_TYPE = "MUST_BE_OBJECT_TYPE", MUST_CONTAIN_FIELD_EDGES = "MUST_CONTAIN_FIELD_EDGES", MUST_CONTAIN_FIELD_PAGE_INFO = "MUST_CONTAIN_FIELD_PAGE_INFO", MUST_HAVE_CONNECTION_SUFFIX = "MUST_HAVE_CONNECTION_SUFFIX", EDGES_FIELD_MUST_RETURN_LIST_TYPE = "EDGES_FIELD_MUST_RETURN_LIST_TYPE", PAGE_INFO_FIELD_MUST_RETURN_NON_NULL_TYPE = "PAGE_INFO_FIELD_MUST_RETURN_NON_NULL_TYPE", NON_OBJECT_TYPES = [
4
4
  Kind.SCALAR_TYPE_DEFINITION,
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.cjs';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.cjs';
8
- import '../siblings.cjs';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -1,4 +1,4 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import {
3
3
  isObjectType,
4
4
  isScalarType,
@@ -6,7 +6,7 @@ import {
6
6
  visit
7
7
  } from "graphql";
8
8
  import { getDocumentNodeFromSchema } from "@graphql-tools/utils";
9
- import { getTypeName, requireGraphQLSchemaFromContext } from "../utils.js";
9
+ import { getTypeName, requireGraphQLSchemaFromContext } from "../../utils.js";
10
10
  const RULE_ID = "relay-edge-types", MESSAGE_MUST_BE_OBJECT_TYPE = "MESSAGE_MUST_BE_OBJECT_TYPE", MESSAGE_MISSING_EDGE_SUFFIX = "MESSAGE_MISSING_EDGE_SUFFIX", MESSAGE_LIST_TYPE_ONLY_EDGE_TYPE = "MESSAGE_LIST_TYPE_ONLY_EDGE_TYPE", MESSAGE_SHOULD_IMPLEMENTS_NODE = "MESSAGE_SHOULD_IMPLEMENTS_NODE";
11
11
  let edgeTypesCache;
12
12
  function getEdgeTypes(schema2) {
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,7 +1,7 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { isScalarType, Kind } from "graphql";
3
- import { REPORT_ON_FIRST_CHARACTER, requireGraphQLSchemaFromContext } from "../utils.js";
4
- import { NON_OBJECT_TYPES } from "./relay-connection-types.js";
3
+ import { REPORT_ON_FIRST_CHARACTER, requireGraphQLSchemaFromContext } from "../../utils.js";
4
+ import { NON_OBJECT_TYPES } from "../relay-connection-types/index.js";
5
5
  const RULE_ID = "relay-page-info", MESSAGE_MUST_EXIST = "MESSAGE_MUST_EXIST", MESSAGE_MUST_BE_OBJECT_TYPE = "MESSAGE_MUST_BE_OBJECT_TYPE", notPageInfoTypesSelector = `:matches(${NON_OBJECT_TYPES})[name.value=PageInfo] > .name`;
6
6
  let hasPageInfoChecked = !1;
7
7
  const rule = {
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.cjs';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.cjs';
8
- import '../siblings.cjs';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
2
- import { valueFromNode } from "../estree-converter/index.js";
3
- import { getNodeName } from "../utils.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
+ import { valueFromNode } from "../../estree-converter/index.js";
3
+ import { getNodeName } from "../../utils.js";
4
4
  const DATE_REGEX = /^\d{2}\/\d{2}\/\d{4}$/, MESSAGE_REQUIRE_DATE = "MESSAGE_REQUIRE_DATE", MESSAGE_INVALID_FORMAT = "MESSAGE_INVALID_FORMAT", MESSAGE_INVALID_DATE = "MESSAGE_INVALID_DATE", MESSAGE_CAN_BE_REMOVED = "MESSAGE_CAN_BE_REMOVED", schema = {
5
5
  type: "array",
6
6
  maxItems: 1,
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
2
- import { valueFromNode } from "../estree-converter/index.js";
3
- import { getNodeName } from "../utils.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
+ import { valueFromNode } from "../../estree-converter/index.js";
3
+ import { getNodeName } from "../../utils.js";
4
4
  const rule = {
5
5
  meta: {
6
6
  docs: {
@@ -1,11 +1,11 @@
1
1
  import { Kind } from 'graphql';
2
- import { GraphQLESLintRule } from '../types.js';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql-config';
6
6
  import 'json-schema-to-ts';
7
- import '../estree-converter/types.js';
8
- import '../siblings.js';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const RULE_ID = "require-description";
@@ -1,4 +1,4 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { Kind, TokenKind } from "graphql";
3
3
  import { getRootTypeNames } from "@graphql-tools/utils";
4
4
  import {
@@ -6,7 +6,7 @@ import {
6
6
  getNodeName,
7
7
  requireGraphQLSchemaFromContext,
8
8
  TYPES_KINDS
9
- } from "../utils.js";
9
+ } from "../../utils.js";
10
10
  const RULE_ID = "require-description", ALLOWED_KINDS = [
11
11
  ...TYPES_KINDS,
12
12
  Kind.DIRECTIVE_DEFINITION,
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { isObjectType } from "graphql";
3
- import { getTypeName, requireGraphQLSchemaFromContext } from "../utils.js";
3
+ import { getTypeName, requireGraphQLSchemaFromContext } from "../../utils.js";
4
4
  const RULE_ID = "require-field-of-type-query-in-mutation-result", rule = {
5
5
  meta: {
6
6
  type: "suggestion",
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import path from "node:path";
3
- import { requireSiblingsOperations } from "../utils.js";
3
+ import { requireSiblingsOperations } from "../../utils.js";
4
4
  const RULE_ID = "require-import-fragment", SUGGESTION_ID = "add-import-expression", rule = {
5
5
  meta: {
6
6
  type: "suggestion",
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { Kind } from "graphql";
3
- import { getNodeName } from "../utils.js";
3
+ import { getNodeName } from "../../utils.js";
4
4
  const RULE_ID = "require-nullable-fields-with-oneof", rule = {
5
5
  meta: {
6
6
  type: "suggestion",
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,6 +1,6 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { Kind } from "graphql";
3
- import { getNodeName, requireGraphQLSchemaFromContext, truthy } from "../utils.js";
3
+ import { getNodeName, requireGraphQLSchemaFromContext, truthy } from "../../utils.js";
4
4
  const RULE_ID = "require-nullable-result-in-root", rule = {
5
5
  meta: {
6
6
  type: "suggestion",
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.js';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.js';
8
- import '../siblings.js';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -1,4 +1,4 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import {
3
3
  GraphQLInterfaceType,
4
4
  GraphQLObjectType,
@@ -9,13 +9,13 @@ import {
9
9
  visitWithTypeInfo
10
10
  } from "graphql";
11
11
  import { asArray } from "@graphql-tools/utils";
12
- import { getBaseType } from "../estree-converter/index.js";
12
+ import { getBaseType } from "../../estree-converter/index.js";
13
13
  import {
14
14
  ARRAY_DEFAULT_OPTIONS,
15
15
  englishJoinWords,
16
16
  requireGraphQLSchemaFromContext,
17
17
  requireSiblingsOperations
18
- } from "../utils.js";
18
+ } from "../../utils.js";
19
19
  const RULE_ID = "require-selections", DEFAULT_ID_FIELD_NAME = "id", schema = {
20
20
  definitions: {
21
21
  asString: {
@@ -38,7 +38,6 @@ const RULE_ID = "require-selections", DEFAULT_ID_FIELD_NAME = "id", schema = {
38
38
  }, rule = {
39
39
  meta: {
40
40
  type: "suggestion",
41
- // eslint-disable-next-line eslint-plugin/require-meta-has-suggestions -- false positive since we assign `problem.suggest` conditionally
42
41
  hasSuggestions: !0,
43
42
  docs: {
44
43
  category: "Operations",
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };
@@ -1,5 +1,5 @@
1
- import "../chunk-UIAXBAMD.js";
2
- import { displayNodeName } from "../utils.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
+ import { displayNodeName } from "../../utils.js";
3
3
  const RULE_ID = "require-type-pattern-with-oneof", rule = {
4
4
  meta: {
5
5
  type: "suggestion",
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.cjs';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.cjs';
8
- import '../siblings.cjs';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -1,7 +1,7 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { Kind } from "graphql";
3
3
  import depthLimit from "graphql-depth-limit";
4
- import { ARRAY_DEFAULT_OPTIONS, logger, requireSiblingsOperations } from "../utils.js";
4
+ import { ARRAY_DEFAULT_OPTIONS, logger, requireSiblingsOperations } from "../../utils.js";
5
5
  const RULE_ID = "selection-set-depth", schema = {
6
6
  type: "array",
7
7
  minItems: 1,
@@ -1,11 +1,11 @@
1
1
  import { FromSchema } from 'json-schema-to-ts';
2
- import { GraphQLESLintRule } from '../types.js';
2
+ import { GraphQLESLintRule } from '../../types.js';
3
3
  import 'eslint';
4
4
  import 'estree';
5
5
  import 'graphql';
6
6
  import 'graphql-config';
7
- import '../estree-converter/types.js';
8
- import '../siblings.js';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
9
  import '@graphql-tools/utils';
10
10
 
11
11
  declare const schema: {
@@ -1,4 +1,4 @@
1
- import "../chunk-UIAXBAMD.js";
1
+ import "../../chunk-UIAXBAMD.js";
2
2
  import { Kind } from "graphql";
3
3
  import {
4
4
  ARRAY_DEFAULT_OPTIONS,
@@ -6,7 +6,7 @@ import {
6
6
  englishJoinWords,
7
7
  requireGraphQLSchemaFromContext,
8
8
  truthy
9
- } from "../utils.js";
9
+ } from "../../utils.js";
10
10
  const RULE_ID = "strict-id-in-types", schema = {
11
11
  type: "array",
12
12
  maxItems: 1,
@@ -0,0 +1,13 @@
1
+ import { GraphQLESLintRule } from '../../types.js';
2
+ import 'eslint';
3
+ import 'estree';
4
+ import 'graphql';
5
+ import 'graphql-config';
6
+ import 'json-schema-to-ts';
7
+ import '../../estree-converter/types.js';
8
+ import '../../siblings.js';
9
+ import '@graphql-tools/utils';
10
+
11
+ declare const rule: GraphQLESLintRule;
12
+
13
+ export { rule };