@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.
- package/cjs/cache.js +8 -36
- package/cjs/chunk-UIAXBAMD.js +8 -0
- package/cjs/configs/index.d.cts +15 -5
- package/cjs/configs/index.js +31 -45
- package/cjs/configs/operations-all.js +33 -26
- package/cjs/configs/operations-recommended.js +59 -52
- package/cjs/configs/schema-all.js +29 -22
- package/cjs/configs/schema-recommended.js +73 -66
- package/cjs/configs/schema-relay.js +17 -10
- package/cjs/documents.js +12 -37
- package/cjs/estree-converter/converter.js +16 -30
- package/cjs/estree-converter/index.js +3 -23
- package/cjs/estree-converter/types.js +1 -14
- package/cjs/estree-converter/utils.js +22 -40
- package/cjs/graphql-config.js +15 -41
- package/cjs/index.d.cts +164 -9
- package/cjs/index.js +24 -41
- package/cjs/meta.js +5 -25
- package/cjs/parser.js +29 -49
- package/cjs/processor.js +22 -35
- package/{esm/rules/alphabetize.d.ts → cjs/rules/alphabetize/index.d.cts} +4 -4
- package/cjs/rules/{alphabetize.js → alphabetize/index.js} +69 -77
- package/{esm/rules/description-style.d.ts → cjs/rules/description-style/index.d.cts} +3 -3
- package/cjs/rules/{description-style.js → description-style/index.js} +7 -27
- package/cjs/rules/graphql-js-validation.js +93 -70
- package/cjs/rules/index.d.cts +5 -5
- package/cjs/rules/index.js +74 -60
- package/{esm/rules/input-name.d.ts → cjs/rules/input-name/index.d.cts} +3 -3
- package/cjs/rules/{input-name.js → input-name/index.js} +10 -28
- package/{esm/rules/lone-executable-definition.d.ts → cjs/rules/lone-executable-definition/index.d.cts} +3 -3
- package/cjs/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +13 -32
- package/cjs/rules/{match-document-filename.d.cts → match-document-filename/index.d.cts} +4 -4
- package/cjs/rules/{match-document-filename.js → match-document-filename/index.js} +20 -34
- package/{esm/rules/naming-convention.d.ts → cjs/rules/naming-convention/index.d.cts} +3 -3
- package/cjs/rules/{naming-convention.js → naming-convention/index.js} +41 -54
- package/cjs/rules/no-anonymous-operations/index.d.cts +13 -0
- package/cjs/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +9 -28
- package/cjs/rules/{no-deprecated.d.cts → no-deprecated/index.d.cts} +3 -3
- package/cjs/rules/{no-deprecated.js → no-deprecated/index.js} +11 -30
- package/cjs/rules/no-duplicate-fields/index.d.cts +13 -0
- package/cjs/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +8 -28
- package/cjs/rules/{no-hashtag-description.d.cts → no-hashtag-description/index.d.cts} +3 -3
- package/cjs/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +11 -31
- package/cjs/rules/no-one-place-fragments/index.d.cts +13 -0
- package/cjs/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +11 -29
- package/cjs/rules/{no-root-type.d.cts → no-root-type/index.d.cts} +3 -3
- package/cjs/rules/{no-root-type.js → no-root-type/index.js} +9 -29
- package/cjs/rules/no-scalar-result-type-on-mutation/index.d.cts +13 -0
- package/cjs/rules/no-scalar-result-type-on-mutation/index.js +69 -0
- package/cjs/rules/no-typename-prefix/index.d.cts +13 -0
- package/cjs/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +5 -25
- package/cjs/rules/no-unreachable-types/index.d.cts +13 -0
- package/cjs/rules/no-unreachable-types/index.js +155 -0
- package/cjs/rules/no-unused-fields/index.d.cts +13 -0
- package/cjs/rules/{no-unused-fields.js → no-unused-fields/index.js} +12 -30
- package/{esm/rules/relay-arguments.d.ts → cjs/rules/relay-arguments/index.d.cts} +3 -3
- package/cjs/rules/{relay-arguments.js → relay-arguments/index.js} +11 -30
- package/{esm/rules/relay-connection-types.d.ts → cjs/rules/relay-connection-types/index.d.cts} +3 -3
- package/cjs/rules/{relay-connection-types.js → relay-connection-types/index.js} +19 -40
- package/{esm/rules/relay-edge-types.d.ts → cjs/rules/relay-edge-types/index.d.cts} +3 -3
- package/cjs/rules/{relay-edge-types.js → relay-edge-types/index.js} +30 -43
- package/cjs/rules/relay-page-info/index.d.cts +13 -0
- package/cjs/rules/{relay-page-info.js → relay-page-info/index.js} +12 -30
- package/{esm/rules/require-deprecation-date.d.ts → cjs/rules/require-deprecation-date/index.d.cts} +3 -3
- package/cjs/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +13 -32
- package/cjs/rules/require-deprecation-reason/index.d.cts +13 -0
- package/cjs/rules/require-deprecation-reason/index.js +66 -0
- package/cjs/rules/{require-description.d.cts → require-description/index.d.cts} +3 -3
- package/cjs/rules/{require-description.js → require-description/index.js} +30 -44
- package/cjs/rules/require-field-of-type-query-in-mutation-result/index.d.cts +13 -0
- package/cjs/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +10 -29
- package/cjs/rules/require-import-fragment/index.d.cts +13 -0
- package/cjs/rules/{require-import-fragment.js → require-import-fragment/index.js} +11 -38
- package/cjs/rules/require-nullable-fields-with-oneof/index.d.cts +13 -0
- package/cjs/rules/require-nullable-fields-with-oneof/index.js +62 -0
- package/cjs/rules/require-nullable-result-in-root/index.d.cts +13 -0
- package/cjs/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +12 -31
- package/cjs/rules/{require-selections.d.cts → require-selections/index.d.cts} +3 -3
- package/cjs/rules/{require-selections.js → require-selections/index.js} +38 -43
- package/cjs/rules/require-type-pattern-with-oneof/index.d.cts +13 -0
- package/cjs/rules/require-type-pattern-with-oneof/index.js +63 -0
- package/{esm/rules/selection-set-depth.d.ts → cjs/rules/selection-set-depth/index.d.cts} +3 -3
- package/cjs/rules/{selection-set-depth.js → selection-set-depth/index.js} +15 -41
- package/cjs/rules/{strict-id-in-types.d.cts → strict-id-in-types/index.d.cts} +3 -3
- package/cjs/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +26 -39
- package/cjs/rules/unique-enum-value-names/index.d.cts +13 -0
- package/cjs/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +10 -29
- package/{esm/rules/unique-fragment-name.d.ts → cjs/rules/unique-fragment-name/index.d.cts} +3 -3
- package/cjs/rules/unique-fragment-name/index.js +87 -0
- package/cjs/rules/unique-operation-name/index.d.cts +13 -0
- package/cjs/rules/{unique-operation-name.js → unique-operation-name/index.js} +7 -27
- package/cjs/schema.js +11 -36
- package/cjs/siblings.js +17 -33
- package/cjs/types.js +1 -14
- package/cjs/utils.d.cts +2 -2
- package/cjs/utils.js +94 -115
- package/esm/configs/index.d.ts +15 -5
- package/esm/configs/index.js +17 -7
- package/esm/configs/operations-all.js +1 -1
- package/esm/index.d.ts +164 -9
- package/esm/index.js +9 -2
- package/esm/meta.js +1 -1
- package/{cjs/rules/alphabetize.d.cts → esm/rules/alphabetize/index.d.ts} +4 -4
- package/esm/rules/{alphabetize.js → alphabetize/index.js} +26 -10
- package/{cjs/rules/description-style.d.cts → esm/rules/description-style/index.d.ts} +3 -3
- package/esm/rules/{description-style.js → description-style/index.js} +2 -2
- package/esm/rules/index.d.ts +5 -5
- package/esm/rules/index.js +34 -34
- package/{cjs/rules/input-name.d.cts → esm/rules/input-name/index.d.ts} +3 -3
- package/esm/rules/{input-name.js → input-name/index.js} +1 -1
- package/{cjs/rules/lone-executable-definition.d.cts → esm/rules/lone-executable-definition/index.d.ts} +3 -3
- package/esm/rules/{lone-executable-definition.js → lone-executable-definition/index.js} +2 -2
- package/esm/rules/{match-document-filename.d.ts → match-document-filename/index.d.ts} +4 -4
- package/esm/rules/{match-document-filename.js → match-document-filename/index.js} +2 -2
- package/{cjs/rules/naming-convention.d.cts → esm/rules/naming-convention/index.d.ts} +3 -3
- package/esm/rules/{naming-convention.js → naming-convention/index.js} +2 -2
- package/{cjs/rules/no-anonymous-operations.d.cts → esm/rules/no-anonymous-operations/index.d.ts} +3 -3
- package/esm/rules/{no-anonymous-operations.js → no-anonymous-operations/index.js} +2 -2
- package/esm/rules/{no-deprecated.d.ts → no-deprecated/index.d.ts} +3 -3
- package/esm/rules/{no-deprecated.js → no-deprecated/index.js} +2 -2
- package/{cjs/rules/no-one-place-fragments.d.cts → esm/rules/no-duplicate-fields/index.d.ts} +3 -3
- package/esm/rules/{no-duplicate-fields.js → no-duplicate-fields/index.js} +1 -1
- package/esm/rules/{no-hashtag-description.d.ts → no-hashtag-description/index.d.ts} +3 -3
- package/esm/rules/{no-hashtag-description.js → no-hashtag-description/index.js} +2 -2
- package/{cjs/rules/no-duplicate-fields.d.cts → esm/rules/no-one-place-fragments/index.d.ts} +3 -3
- package/esm/rules/{no-one-place-fragments.js → no-one-place-fragments/index.js} +2 -2
- package/esm/rules/{no-root-type.d.ts → no-root-type/index.d.ts} +3 -3
- package/esm/rules/{no-root-type.js → no-root-type/index.js} +2 -2
- package/{cjs/rules/no-scalar-result-type-on-mutation.d.cts → esm/rules/no-scalar-result-type-on-mutation/index.d.ts} +3 -3
- package/esm/rules/{no-scalar-result-type-on-mutation.js → no-scalar-result-type-on-mutation/index.js} +2 -2
- package/esm/rules/no-typename-prefix/index.d.ts +13 -0
- package/esm/rules/{no-typename-prefix.js → no-typename-prefix/index.js} +1 -1
- package/esm/rules/no-unreachable-types/index.d.ts +13 -0
- package/esm/rules/{no-unreachable-types.js → no-unreachable-types/index.js} +3 -3
- package/esm/rules/no-unused-fields/index.d.ts +13 -0
- package/esm/rules/{no-unused-fields.js → no-unused-fields/index.js} +3 -3
- package/{cjs/rules/relay-arguments.d.cts → esm/rules/relay-arguments/index.d.ts} +3 -3
- package/esm/rules/{relay-arguments.js → relay-arguments/index.js} +2 -2
- package/{cjs/rules/relay-connection-types.d.cts → esm/rules/relay-connection-types/index.d.ts} +3 -3
- package/esm/rules/{relay-connection-types.js → relay-connection-types/index.js} +1 -1
- package/{cjs/rules/relay-edge-types.d.cts → esm/rules/relay-edge-types/index.d.ts} +3 -3
- package/esm/rules/{relay-edge-types.js → relay-edge-types/index.js} +2 -2
- package/esm/rules/relay-page-info/index.d.ts +13 -0
- package/esm/rules/{relay-page-info.js → relay-page-info/index.js} +3 -3
- package/{cjs/rules/require-deprecation-date.d.cts → esm/rules/require-deprecation-date/index.d.ts} +3 -3
- package/esm/rules/{require-deprecation-date.js → require-deprecation-date/index.js} +3 -3
- package/esm/rules/require-deprecation-reason/index.d.ts +13 -0
- package/esm/rules/{require-deprecation-reason.js → require-deprecation-reason/index.js} +3 -3
- package/esm/rules/{require-description.d.ts → require-description/index.d.ts} +3 -3
- package/esm/rules/{require-description.js → require-description/index.js} +2 -2
- package/esm/rules/require-field-of-type-query-in-mutation-result/index.d.ts +13 -0
- package/esm/rules/{require-field-of-type-query-in-mutation-result.js → require-field-of-type-query-in-mutation-result/index.js} +2 -2
- package/esm/rules/require-import-fragment/index.d.ts +13 -0
- package/esm/rules/{require-import-fragment.js → require-import-fragment/index.js} +2 -2
- package/esm/rules/require-nullable-fields-with-oneof/index.d.ts +13 -0
- package/esm/rules/{require-nullable-fields-with-oneof.js → require-nullable-fields-with-oneof/index.js} +2 -2
- package/esm/rules/require-nullable-result-in-root/index.d.ts +13 -0
- package/esm/rules/{require-nullable-result-in-root.js → require-nullable-result-in-root/index.js} +2 -2
- package/esm/rules/{require-selections.d.ts → require-selections/index.d.ts} +3 -3
- package/esm/rules/{require-selections.js → require-selections/index.js} +3 -4
- package/esm/rules/require-type-pattern-with-oneof/index.d.ts +13 -0
- package/esm/rules/{require-type-pattern-with-oneof.js → require-type-pattern-with-oneof/index.js} +2 -2
- package/{cjs/rules/selection-set-depth.d.cts → esm/rules/selection-set-depth/index.d.ts} +3 -3
- package/esm/rules/{selection-set-depth.js → selection-set-depth/index.js} +2 -2
- package/esm/rules/{strict-id-in-types.d.ts → strict-id-in-types/index.d.ts} +3 -3
- package/esm/rules/{strict-id-in-types.js → strict-id-in-types/index.js} +2 -2
- package/esm/rules/unique-enum-value-names/index.d.ts +13 -0
- package/esm/rules/{unique-enum-value-names.js → unique-enum-value-names/index.js} +2 -2
- package/{cjs/rules/unique-fragment-name.d.cts → esm/rules/unique-fragment-name/index.d.ts} +3 -3
- package/esm/rules/{unique-fragment-name.js → unique-fragment-name/index.js} +3 -3
- package/esm/rules/unique-operation-name/index.d.ts +13 -0
- package/esm/rules/{unique-operation-name.js → unique-operation-name/index.js} +2 -2
- package/esm/utils.d.ts +2 -2
- package/esm/utils.js +39 -16
- package/index.browser.js +115 -67
- package/package.json +2 -2
- package/cjs/rules/no-scalar-result-type-on-mutation.js +0 -88
- package/cjs/rules/no-typename-prefix.d.cts +0 -13
- package/cjs/rules/no-unreachable-types.d.cts +0 -13
- package/cjs/rules/no-unreachable-types.js +0 -175
- package/cjs/rules/no-unused-fields.d.cts +0 -13
- package/cjs/rules/relay-page-info.d.cts +0 -13
- package/cjs/rules/require-deprecation-reason.d.cts +0 -13
- package/cjs/rules/require-deprecation-reason.js +0 -85
- package/cjs/rules/require-field-of-type-query-in-mutation-result.d.cts +0 -13
- package/cjs/rules/require-import-fragment.d.cts +0 -13
- package/cjs/rules/require-nullable-fields-with-oneof.d.cts +0 -13
- package/cjs/rules/require-nullable-fields-with-oneof.js +0 -81
- package/cjs/rules/require-nullable-result-in-root.d.cts +0 -13
- package/cjs/rules/require-type-pattern-with-oneof.d.cts +0 -13
- package/cjs/rules/require-type-pattern-with-oneof.js +0 -83
- package/cjs/rules/unique-enum-value-names.d.cts +0 -13
- package/cjs/rules/unique-fragment-name.js +0 -106
- package/cjs/rules/unique-operation-name.d.cts +0 -13
- package/esm/rules/no-anonymous-operations.d.ts +0 -13
- package/esm/rules/no-duplicate-fields.d.ts +0 -13
- package/esm/rules/no-one-place-fragments.d.ts +0 -13
- package/esm/rules/no-scalar-result-type-on-mutation.d.ts +0 -13
- package/esm/rules/no-typename-prefix.d.ts +0 -13
- package/esm/rules/no-unreachable-types.d.ts +0 -13
- package/esm/rules/no-unused-fields.d.ts +0 -13
- package/esm/rules/relay-page-info.d.ts +0 -13
- package/esm/rules/require-deprecation-reason.d.ts +0 -13
- package/esm/rules/require-field-of-type-query-in-mutation-result.d.ts +0 -13
- package/esm/rules/require-import-fragment.d.ts +0 -13
- package/esm/rules/require-nullable-fields-with-oneof.d.ts +0 -13
- package/esm/rules/require-nullable-result-in-root.d.ts +0 -13
- package/esm/rules/require-type-pattern-with-oneof.d.ts +0 -13
- package/esm/rules/unique-enum-value-names.d.ts +0 -13
- package/esm/rules/unique-operation-name.d.ts +0 -13
@@ -1,30 +1,13 @@
|
|
1
|
-
"use strict";
|
2
|
-
var
|
3
|
-
var
|
4
|
-
var
|
5
|
-
|
6
|
-
var __export = (target, all) => {
|
7
|
-
for (var name in all)
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
11
|
-
for (let key of __getOwnPropNames(from))
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
13
|
-
return to;
|
14
|
-
};
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
16
|
-
var no_unused_fields_exports = {};
|
17
|
-
__export(no_unused_fields_exports, {
|
18
|
-
rule: () => rule
|
19
|
-
});
|
20
|
-
module.exports = __toCommonJS(no_unused_fields_exports);
|
21
|
-
var import_graphql = require("graphql"), import_cache = require("../cache.js"), import_utils = require("../utils.js");
|
22
|
-
const RULE_ID = "no-unused-fields", usedFieldsCache = new import_cache.ModuleCache();
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }require('../../chunk-UIAXBAMD.js');
|
2
|
+
var _graphql = require('graphql');
|
3
|
+
var _cachejs = require('../../cache.js');
|
4
|
+
var _utilsjs = require('../../utils.js');
|
5
|
+
const RULE_ID = "no-unused-fields", usedFieldsCache = new (0, _cachejs.ModuleCache)();
|
23
6
|
function getUsedFields(schema, operations) {
|
24
7
|
const cachedValue = usedFieldsCache.get(schema);
|
25
8
|
if (process.env.NODE_ENV !== "test" && cachedValue)
|
26
9
|
return cachedValue;
|
27
|
-
const usedFields = /* @__PURE__ */ Object.create(null), typeInfo = new
|
10
|
+
const usedFields = /* @__PURE__ */ Object.create(null), typeInfo = new (0, _graphql.TypeInfo)(schema), visitor = _graphql.visitWithTypeInfo.call(void 0, typeInfo, {
|
28
11
|
Field(node) {
|
29
12
|
if (!typeInfo.getFieldDef())
|
30
13
|
return !1;
|
@@ -33,7 +16,7 @@ function getUsedFields(schema, operations) {
|
|
33
16
|
}
|
34
17
|
}), allDocuments = [...operations.getOperations(), ...operations.getFragments()];
|
35
18
|
for (const { document } of allDocuments)
|
36
|
-
(0,
|
19
|
+
_graphql.visit.call(void 0, document, visitor);
|
37
20
|
return usedFieldsCache.set(schema, usedFields), usedFields;
|
38
21
|
}
|
39
22
|
const rule = {
|
@@ -104,11 +87,11 @@ const rule = {
|
|
104
87
|
hasSuggestions: !0
|
105
88
|
},
|
106
89
|
create(context) {
|
107
|
-
const schema = (0,
|
90
|
+
const schema = _utilsjs.requireGraphQLSchemaFromContext.call(void 0, RULE_ID, context), siblingsOperations = _utilsjs.requireSiblingsOperations.call(void 0, RULE_ID, context), usedFields = getUsedFields(schema, siblingsOperations);
|
108
91
|
return {
|
109
92
|
FieldDefinition(node) {
|
110
93
|
const fieldName = node.name.value, parentTypeName = node.parent.name.value;
|
111
|
-
usedFields[parentTypeName]
|
94
|
+
_optionalChain([usedFields, 'access', _ => _[parentTypeName], 'optionalAccess', _2 => _2.has, 'call', _3 => _3(fieldName)]) || context.report({
|
112
95
|
node: node.name,
|
113
96
|
messageId: RULE_ID,
|
114
97
|
data: { fieldName },
|
@@ -126,7 +109,6 @@ const rule = {
|
|
126
109
|
};
|
127
110
|
}
|
128
111
|
};
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
});
|
112
|
+
|
113
|
+
|
114
|
+
exports.rule = rule;
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'graphql-config';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.cjs';
|
8
|
+
import '../../siblings.cjs';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
@@ -1,24 +1,6 @@
|
|
1
|
-
"use strict";
|
2
|
-
var
|
3
|
-
var
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
6
|
-
var __export = (target, all) => {
|
7
|
-
for (var name in all)
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
11
|
-
for (let key of __getOwnPropNames(from))
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
13
|
-
return to;
|
14
|
-
};
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
16
|
-
var relay_arguments_exports = {};
|
17
|
-
__export(relay_arguments_exports, {
|
18
|
-
rule: () => rule
|
19
|
-
});
|
20
|
-
module.exports = __toCommonJS(relay_arguments_exports);
|
21
|
-
var import_graphql = require("graphql"), import_utils = require("../utils.js");
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }require('../../chunk-UIAXBAMD.js');
|
2
|
+
var _graphql = require('graphql');
|
3
|
+
var _utilsjs = require('../../utils.js');
|
22
4
|
const RULE_ID = "relay-arguments", MISSING_ARGUMENTS = "MISSING_ARGUMENTS", schema = {
|
23
5
|
type: "array",
|
24
6
|
maxItems: 1,
|
@@ -34,7 +16,7 @@ const RULE_ID = "relay-arguments", MISSING_ARGUMENTS = "MISSING_ARGUMENTS", sche
|
|
34
16
|
}
|
35
17
|
}
|
36
18
|
}
|
37
|
-
}, rule = {
|
19
|
+
}, rule = exports.rule = {
|
38
20
|
meta: {
|
39
21
|
type: "problem",
|
40
22
|
docs: {
|
@@ -88,14 +70,14 @@ const RULE_ID = "relay-arguments", MISSING_ARGUMENTS = "MISSING_ARGUMENTS", sche
|
|
88
70
|
schema
|
89
71
|
},
|
90
72
|
create(context) {
|
91
|
-
const schema2 = (0,
|
73
|
+
const schema2 = _utilsjs.requireGraphQLSchemaFromContext.call(void 0, RULE_ID, context), { includeBoth = !0 } = context.options[0] || {};
|
92
74
|
return {
|
93
75
|
"FieldDefinition > .gqlType Name[value=/Connection$/]"(node) {
|
94
76
|
let fieldNode = node.parent;
|
95
|
-
for (; fieldNode.kind !==
|
77
|
+
for (; fieldNode.kind !== _graphql.Kind.FIELD_DEFINITION; )
|
96
78
|
fieldNode = fieldNode.parent;
|
97
79
|
const args = Object.fromEntries(
|
98
|
-
fieldNode.arguments
|
80
|
+
_optionalChain([fieldNode, 'access', _ => _.arguments, 'optionalAccess', _2 => _2.map, 'call', _3 => _3((argument) => [argument.name.value, argument])]) || []
|
99
81
|
), hasForwardPagination = !!(args.first && args.after), hasBackwardPagination = !!(args.last && args.before);
|
100
82
|
if (!hasForwardPagination && !hasBackwardPagination) {
|
101
83
|
context.report({
|
@@ -107,7 +89,7 @@ const RULE_ID = "relay-arguments", MISSING_ARGUMENTS = "MISSING_ARGUMENTS", sche
|
|
107
89
|
function checkField(typeName, argumentName) {
|
108
90
|
const argument = args[argumentName], hasArgument = !!argument;
|
109
91
|
let type = argument;
|
110
|
-
if (hasArgument && type.gqlType.kind ===
|
92
|
+
if (hasArgument && type.gqlType.kind === _graphql.Kind.NON_NULL_TYPE && (type = type.gqlType), !(hasArgument && type.gqlType.kind === _graphql.Kind.NAMED_TYPE && (type.gqlType.name.value === typeName || typeName === "String" && _graphql.isScalarType.call(void 0, schema2.getType(type.gqlType.name.value))))) {
|
111
93
|
const returnType = typeName === "String" ? "String or Scalar" : typeName;
|
112
94
|
context.report({
|
113
95
|
node: (argument || fieldNode).name,
|
@@ -120,7 +102,6 @@ const RULE_ID = "relay-arguments", MISSING_ARGUMENTS = "MISSING_ARGUMENTS", sche
|
|
120
102
|
};
|
121
103
|
}
|
122
104
|
};
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
});
|
105
|
+
|
106
|
+
|
107
|
+
exports.rule = rule;
|
package/{esm/rules/relay-connection-types.d.ts → cjs/rules/relay-connection-types/index.d.cts}
RENAMED
@@ -1,11 +1,11 @@
|
|
1
1
|
import { Kind } from 'graphql';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql-config';
|
6
6
|
import 'json-schema-to-ts';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.cjs';
|
8
|
+
import '../../siblings.cjs';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const NON_OBJECT_TYPES: Kind[];
|
@@ -1,36 +1,16 @@
|
|
1
|
-
"use strict";
|
2
|
-
var
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
};
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
16
|
-
var relay_connection_types_exports = {};
|
17
|
-
__export(relay_connection_types_exports, {
|
18
|
-
NON_OBJECT_TYPES: () => NON_OBJECT_TYPES,
|
19
|
-
rule: () => rule
|
20
|
-
});
|
21
|
-
module.exports = __toCommonJS(relay_connection_types_exports);
|
22
|
-
var import_graphql = require("graphql");
|
23
|
-
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 = [
|
24
|
-
import_graphql.Kind.SCALAR_TYPE_DEFINITION,
|
25
|
-
import_graphql.Kind.UNION_TYPE_DEFINITION,
|
26
|
-
import_graphql.Kind.UNION_TYPE_EXTENSION,
|
27
|
-
import_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION,
|
28
|
-
import_graphql.Kind.INPUT_OBJECT_TYPE_EXTENSION,
|
29
|
-
import_graphql.Kind.ENUM_TYPE_DEFINITION,
|
30
|
-
import_graphql.Kind.ENUM_TYPE_EXTENSION,
|
31
|
-
import_graphql.Kind.INTERFACE_TYPE_DEFINITION,
|
32
|
-
import_graphql.Kind.INTERFACE_TYPE_EXTENSION
|
33
|
-
], notConnectionTypesSelector = `:matches(${NON_OBJECT_TYPES})[name.value=/Connection$/] > .name`, hasEdgesField = (node) => node.fields?.some((field) => field.name.value === "edges"), hasPageInfoField = (node) => node.fields?.some((field) => field.name.value === "pageInfo"), rule = {
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }require('../../chunk-UIAXBAMD.js');
|
2
|
+
var _graphql = require('graphql');
|
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 = exports.NON_OBJECT_TYPES = [
|
4
|
+
_graphql.Kind.SCALAR_TYPE_DEFINITION,
|
5
|
+
_graphql.Kind.UNION_TYPE_DEFINITION,
|
6
|
+
_graphql.Kind.UNION_TYPE_EXTENSION,
|
7
|
+
_graphql.Kind.INPUT_OBJECT_TYPE_DEFINITION,
|
8
|
+
_graphql.Kind.INPUT_OBJECT_TYPE_EXTENSION,
|
9
|
+
_graphql.Kind.ENUM_TYPE_DEFINITION,
|
10
|
+
_graphql.Kind.ENUM_TYPE_EXTENSION,
|
11
|
+
_graphql.Kind.INTERFACE_TYPE_DEFINITION,
|
12
|
+
_graphql.Kind.INTERFACE_TYPE_EXTENSION
|
13
|
+
], notConnectionTypesSelector = `:matches(${NON_OBJECT_TYPES})[name.value=/Connection$/] > .name`, hasEdgesField = (node) => _optionalChain([node, 'access', _ => _.fields, 'optionalAccess', _2 => _2.some, 'call', _3 => _3((field) => field.name.value === "edges")]), hasPageInfoField = (node) => _optionalChain([node, 'access', _4 => _4.fields, 'optionalAccess', _5 => _5.some, 'call', _6 => _6((field) => field.name.value === "pageInfo")]), rule = exports.rule = {
|
34
14
|
meta: {
|
35
15
|
type: "problem",
|
36
16
|
docs: {
|
@@ -96,16 +76,15 @@ const MUST_BE_OBJECT_TYPE = "MUST_BE_OBJECT_TYPE", MUST_CONTAIN_FIELD_EDGES = "M
|
|
96
76
|
hasEdgesField(node) || context.report({ node: node.name, messageId: MUST_CONTAIN_FIELD_EDGES }), hasPageInfoField(node) || context.report({ node: node.name, messageId: MUST_CONTAIN_FIELD_PAGE_INFO });
|
97
77
|
},
|
98
78
|
":matches(ObjectTypeDefinition, ObjectTypeExtension)[name.value=/Connection$/] > FieldDefinition[name.value=edges] > .gqlType"(node) {
|
99
|
-
node.kind ===
|
79
|
+
node.kind === _graphql.Kind.LIST_TYPE || node.kind === _graphql.Kind.NON_NULL_TYPE && node.gqlType.kind === _graphql.Kind.LIST_TYPE || context.report({ node, messageId: EDGES_FIELD_MUST_RETURN_LIST_TYPE });
|
100
80
|
},
|
101
81
|
":matches(ObjectTypeDefinition, ObjectTypeExtension)[name.value=/Connection$/] > FieldDefinition[name.value=pageInfo] > .gqlType"(node) {
|
102
|
-
node.kind ===
|
82
|
+
node.kind === _graphql.Kind.NON_NULL_TYPE && node.gqlType.kind === _graphql.Kind.NAMED_TYPE && node.gqlType.name.value === "PageInfo" || context.report({ node, messageId: PAGE_INFO_FIELD_MUST_RETURN_NON_NULL_TYPE });
|
103
83
|
}
|
104
84
|
};
|
105
85
|
}
|
106
86
|
};
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
});
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
exports.NON_OBJECT_TYPES = NON_OBJECT_TYPES; exports.rule = rule;
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'graphql-config';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.cjs';
|
8
|
+
import '../../siblings.cjs';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
@@ -1,24 +1,12 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
11
|
-
for (let key of __getOwnPropNames(from))
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
13
|
-
return to;
|
14
|
-
};
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
16
|
-
var relay_edge_types_exports = {};
|
17
|
-
__export(relay_edge_types_exports, {
|
18
|
-
rule: () => rule
|
19
|
-
});
|
20
|
-
module.exports = __toCommonJS(relay_edge_types_exports);
|
21
|
-
var import_graphql = require("graphql"), import_utils = require("@graphql-tools/utils"), import_utils2 = require("../utils.js");
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }require('../../chunk-UIAXBAMD.js');
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
var _graphql = require('graphql');
|
8
|
+
var _utils = require('@graphql-tools/utils');
|
9
|
+
var _utilsjs = require('../../utils.js');
|
22
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";
|
23
11
|
let edgeTypesCache;
|
24
12
|
function getEdgeTypes(schema2) {
|
@@ -28,14 +16,14 @@ function getEdgeTypes(schema2) {
|
|
28
16
|
ObjectTypeDefinition(node) {
|
29
17
|
if (!node.name.value.endsWith("Connection"))
|
30
18
|
return;
|
31
|
-
const edges = node.fields
|
19
|
+
const edges = _optionalChain([node, 'access', _ => _.fields, 'optionalAccess', _2 => _2.find, 'call', _3 => _3((field) => field.name.value === "edges")]);
|
32
20
|
if (edges) {
|
33
|
-
const edgesTypeName = (0,
|
34
|
-
(0,
|
21
|
+
const edgesTypeName = _utilsjs.getTypeName.call(void 0, edges), edgesType = schema2.getType(edgesTypeName);
|
22
|
+
_graphql.isObjectType.call(void 0, edgesType) && edgeTypes.add(edgesTypeName);
|
35
23
|
}
|
36
24
|
}
|
37
|
-
}, astNode = (0,
|
38
|
-
return (0,
|
25
|
+
}, astNode = _utils.getDocumentNodeFromSchema.call(void 0, schema2);
|
26
|
+
return _graphql.visit.call(void 0, astNode, visitor), edgeTypesCache = edgeTypes, edgeTypesCache;
|
39
27
|
}
|
40
28
|
const schema = {
|
41
29
|
type: "array",
|
@@ -62,7 +50,7 @@ const schema = {
|
|
62
50
|
}
|
63
51
|
}
|
64
52
|
}
|
65
|
-
}, rule = {
|
53
|
+
}, rule = exports.rule = {
|
66
54
|
meta: {
|
67
55
|
type: "problem",
|
68
56
|
docs: {
|
@@ -106,13 +94,13 @@ const schema = {
|
|
106
94
|
schema
|
107
95
|
},
|
108
96
|
create(context) {
|
109
|
-
const schema2 = (0,
|
97
|
+
const schema2 = _utilsjs.requireGraphQLSchemaFromContext.call(void 0, RULE_ID, context), edgeTypes = getEdgeTypes(schema2), options = {
|
110
98
|
withEdgeSuffix: !0,
|
111
99
|
shouldImplementNode: !0,
|
112
100
|
listTypeCanWrapOnlyEdgeType: !0,
|
113
101
|
...context.options[0]
|
114
|
-
}, isNamedOrNonNullNamed = (node) => node.kind ===
|
115
|
-
const nodeField = node.fields
|
102
|
+
}, isNamedOrNonNullNamed = (node) => node.kind === _graphql.Kind.NAMED_TYPE || node.kind === _graphql.Kind.NON_NULL_TYPE && node.gqlType.kind === _graphql.Kind.NAMED_TYPE, checkNodeField = (node) => {
|
103
|
+
const nodeField = _optionalChain([node, 'access', _4 => _4.fields, 'optionalAccess', _5 => _5.find, 'call', _6 => _6((field) => field.name.value === "node")]), message = "return either a Scalar, Enum, Object, Interface, Union, or a non-null wrapper around one of those types.";
|
116
104
|
if (!nodeField)
|
117
105
|
context.report({
|
118
106
|
node: node.name,
|
@@ -121,13 +109,13 @@ const schema = {
|
|
121
109
|
else if (!isNamedOrNonNullNamed(nodeField.gqlType))
|
122
110
|
context.report({ node: nodeField.name, message: `Field \`node\` must ${message}` });
|
123
111
|
else if (options.shouldImplementNode) {
|
124
|
-
const nodeReturnTypeName = (0,
|
125
|
-
if (!(0,
|
112
|
+
const nodeReturnTypeName = _utilsjs.getTypeName.call(void 0, nodeField.gqlType.rawNode()), type = schema2.getType(nodeReturnTypeName);
|
113
|
+
if (!_graphql.isObjectType.call(void 0, type))
|
126
114
|
return;
|
127
|
-
type.astNode.interfaces
|
115
|
+
_optionalChain([type, 'access', _7 => _7.astNode, 'access', _8 => _8.interfaces, 'optionalAccess', _9 => _9.some, 'call', _10 => _10((n) => n.name.value === "Node")]) || context.report({ node: node.name, messageId: MESSAGE_SHOULD_IMPLEMENTS_NODE });
|
128
116
|
}
|
129
117
|
}, checkCursorField = (node) => {
|
130
|
-
const cursorField = node.fields
|
118
|
+
const cursorField = _optionalChain([node, 'access', _11 => _11.fields, 'optionalAccess', _12 => _12.find, 'call', _13 => _13((field) => field.name.value === "cursor")]), message = "return either a String, Scalar, or a non-null wrapper wrapper around one of those types.";
|
131
119
|
if (!cursorField) {
|
132
120
|
context.report({
|
133
121
|
node: node.name,
|
@@ -135,12 +123,12 @@ const schema = {
|
|
135
123
|
});
|
136
124
|
return;
|
137
125
|
}
|
138
|
-
const typeName = (0,
|
139
|
-
(!isNamedOrNonNullNamed(cursorField.gqlType) || typeName !== "String" && !(0,
|
126
|
+
const typeName = _utilsjs.getTypeName.call(void 0, cursorField.rawNode());
|
127
|
+
(!isNamedOrNonNullNamed(cursorField.gqlType) || typeName !== "String" && !_graphql.isScalarType.call(void 0, schema2.getType(typeName))) && context.report({ node: cursorField.name, message: `Field \`cursor\` must ${message}` });
|
140
128
|
}, listeners = {
|
141
129
|
":matches(ObjectTypeDefinition, ObjectTypeExtension)[name.value=/Connection$/] > FieldDefinition[name.value=edges] > .gqlType Name"(node) {
|
142
130
|
const type = schema2.getType(node.value);
|
143
|
-
(0,
|
131
|
+
_graphql.isObjectType.call(void 0, type) || context.report({ node, messageId: MESSAGE_MUST_BE_OBJECT_TYPE });
|
144
132
|
},
|
145
133
|
":matches(ObjectTypeDefinition, ObjectTypeExtension)"(node) {
|
146
134
|
const typeName = node.name.value;
|
@@ -148,14 +136,13 @@ const schema = {
|
|
148
136
|
}
|
149
137
|
};
|
150
138
|
return options.listTypeCanWrapOnlyEdgeType && (listeners["FieldDefinition > .gqlType"] = (node) => {
|
151
|
-
if (node.kind ===
|
152
|
-
const typeName = (0,
|
139
|
+
if (node.kind === _graphql.Kind.LIST_TYPE || node.kind === _graphql.Kind.NON_NULL_TYPE && node.gqlType.kind === _graphql.Kind.LIST_TYPE) {
|
140
|
+
const typeName = _utilsjs.getTypeName.call(void 0, node.rawNode());
|
153
141
|
edgeTypes.has(typeName) || context.report({ node, messageId: MESSAGE_LIST_TYPE_ONLY_EDGE_TYPE });
|
154
142
|
}
|
155
143
|
}), listeners;
|
156
144
|
}
|
157
145
|
};
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
});
|
146
|
+
|
147
|
+
|
148
|
+
exports.rule = rule;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.cjs';
|
8
|
+
import '../../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|
@@ -1,25 +1,8 @@
|
|
1
|
-
"use strict";
|
2
|
-
var
|
3
|
-
var
|
4
|
-
var
|
5
|
-
|
6
|
-
var __export = (target, all) => {
|
7
|
-
for (var name in all)
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
11
|
-
for (let key of __getOwnPropNames(from))
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
13
|
-
return to;
|
14
|
-
};
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
16
|
-
var relay_page_info_exports = {};
|
17
|
-
__export(relay_page_info_exports, {
|
18
|
-
rule: () => rule
|
19
|
-
});
|
20
|
-
module.exports = __toCommonJS(relay_page_info_exports);
|
21
|
-
var import_graphql = require("graphql"), import_utils = require("../utils.js"), import_relay_connection_types = require("./relay-connection-types.js");
|
22
|
-
const RULE_ID = "relay-page-info", MESSAGE_MUST_EXIST = "MESSAGE_MUST_EXIST", MESSAGE_MUST_BE_OBJECT_TYPE = "MESSAGE_MUST_BE_OBJECT_TYPE", notPageInfoTypesSelector = `:matches(${import_relay_connection_types.NON_OBJECT_TYPES})[name.value=PageInfo] > .name`;
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }require('../../chunk-UIAXBAMD.js');
|
2
|
+
var _graphql = require('graphql');
|
3
|
+
var _utilsjs = require('../../utils.js');
|
4
|
+
var _indexjs = require('../relay-connection-types/index.js');
|
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(${_indexjs.NON_OBJECT_TYPES})[name.value=PageInfo] > .name`;
|
23
6
|
let hasPageInfoChecked = !1;
|
24
7
|
const rule = {
|
25
8
|
meta: {
|
@@ -61,9 +44,9 @@ const rule = {
|
|
61
44
|
schema: []
|
62
45
|
},
|
63
46
|
create(context) {
|
64
|
-
const schema = (0,
|
47
|
+
const schema = _utilsjs.requireGraphQLSchemaFromContext.call(void 0, RULE_ID, context);
|
65
48
|
return (process.env.NODE_ENV === "test" || !hasPageInfoChecked) && (schema.getType("PageInfo") || context.report({
|
66
|
-
loc:
|
49
|
+
loc: _utilsjs.REPORT_ON_FIRST_CHARACTER,
|
67
50
|
messageId: MESSAGE_MUST_EXIST
|
68
51
|
}), hasPageInfoChecked = !0), {
|
69
52
|
[notPageInfoTypesSelector](node) {
|
@@ -71,13 +54,13 @@ const rule = {
|
|
71
54
|
},
|
72
55
|
"ObjectTypeDefinition[name.value=PageInfo]"(node) {
|
73
56
|
const fieldMap = Object.fromEntries(
|
74
|
-
node.fields
|
57
|
+
_optionalChain([node, 'access', _ => _.fields, 'optionalAccess', _2 => _2.map, 'call', _3 => _3((field) => [field.name.value, field])]) || []
|
75
58
|
), checkField = (fieldName, typeName) => {
|
76
59
|
const field = fieldMap[fieldName];
|
77
60
|
let isAllowedType = !1;
|
78
61
|
if (field) {
|
79
62
|
const type = field.gqlType;
|
80
|
-
typeName === "Boolean" ? isAllowedType = type.kind ===
|
63
|
+
typeName === "Boolean" ? isAllowedType = type.kind === _graphql.Kind.NON_NULL_TYPE && type.gqlType.kind === _graphql.Kind.NAMED_TYPE && type.gqlType.name.value === "Boolean" : type.kind === _graphql.Kind.NAMED_TYPE && (isAllowedType = type.name.value === "String" || _graphql.isScalarType.call(void 0, schema.getType(type.name.value)));
|
81
64
|
}
|
82
65
|
if (!isAllowedType) {
|
83
66
|
const returnType = typeName === "Boolean" ? "non-null Boolean" : "either String or Scalar, which can be null if there are no results";
|
@@ -92,7 +75,6 @@ const rule = {
|
|
92
75
|
};
|
93
76
|
}
|
94
77
|
};
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
});
|
78
|
+
|
79
|
+
|
80
|
+
exports.rule = rule;
|
package/{esm/rules/require-deprecation-date.d.ts → cjs/rules/require-deprecation-date/index.d.cts}
RENAMED
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FromSchema } from 'json-schema-to-ts';
|
2
|
-
import { GraphQLESLintRule } from '
|
2
|
+
import { GraphQLESLintRule } from '../../types.cjs';
|
3
3
|
import 'eslint';
|
4
4
|
import 'estree';
|
5
5
|
import 'graphql';
|
6
6
|
import 'graphql-config';
|
7
|
-
import '
|
8
|
-
import '
|
7
|
+
import '../../estree-converter/types.cjs';
|
8
|
+
import '../../siblings.cjs';
|
9
9
|
import '@graphql-tools/utils';
|
10
10
|
|
11
11
|
declare const schema: {
|
@@ -1,24 +1,6 @@
|
|
1
|
-
"use strict";
|
2
|
-
var
|
3
|
-
var
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
6
|
-
var __export = (target, all) => {
|
7
|
-
for (var name in all)
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
11
|
-
for (let key of __getOwnPropNames(from))
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
13
|
-
return to;
|
14
|
-
};
|
15
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
16
|
-
var require_deprecation_date_exports = {};
|
17
|
-
__export(require_deprecation_date_exports, {
|
18
|
-
rule: () => rule
|
19
|
-
});
|
20
|
-
module.exports = __toCommonJS(require_deprecation_date_exports);
|
21
|
-
var import_estree_converter = require("../estree-converter/index.js"), import_utils = require("../utils.js");
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }require('../../chunk-UIAXBAMD.js');
|
2
|
+
var _indexjs = require('../../estree-converter/index.js');
|
3
|
+
var _utilsjs = require('../../utils.js');
|
22
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 = {
|
23
5
|
type: "array",
|
24
6
|
maxItems: 1,
|
@@ -31,7 +13,7 @@ const DATE_REGEX = /^\d{2}\/\d{2}\/\d{4}$/, MESSAGE_REQUIRE_DATE = "MESSAGE_REQU
|
|
31
13
|
}
|
32
14
|
}
|
33
15
|
}
|
34
|
-
}, rule = {
|
16
|
+
}, rule = exports.rule = {
|
35
17
|
meta: {
|
36
18
|
type: "suggestion",
|
37
19
|
hasSuggestions: !0,
|
@@ -90,23 +72,23 @@ const DATE_REGEX = /^\d{2}\/\d{2}\/\d{4}$/, MESSAGE_REQUIRE_DATE = "MESSAGE_REQU
|
|
90
72
|
create(context) {
|
91
73
|
return {
|
92
74
|
"Directive[name.value=deprecated]"(node) {
|
93
|
-
const argName = context.options[0]
|
75
|
+
const argName = _optionalChain([context, 'access', _ => _.options, 'access', _2 => _2[0], 'optionalAccess', _3 => _3.argumentName]) || "deletionDate", deletionDateNode = _optionalChain([node, 'access', _4 => _4.arguments, 'optionalAccess', _5 => _5.find, 'call', _6 => _6((arg) => arg.name.value === argName)]);
|
94
76
|
if (!deletionDateNode) {
|
95
77
|
context.report({
|
96
78
|
node: node.name,
|
97
79
|
messageId: MESSAGE_REQUIRE_DATE,
|
98
80
|
data: {
|
99
|
-
nodeName: (0,
|
81
|
+
nodeName: _utilsjs.getNodeName.call(void 0, node.parent)
|
100
82
|
}
|
101
83
|
});
|
102
84
|
return;
|
103
85
|
}
|
104
|
-
const deletionDate = (0,
|
86
|
+
const deletionDate = _indexjs.valueFromNode.call(void 0, deletionDateNode.value);
|
105
87
|
if (!DATE_REGEX.test(deletionDate)) {
|
106
88
|
context.report({
|
107
89
|
node: deletionDateNode.value,
|
108
90
|
messageId: MESSAGE_INVALID_FORMAT,
|
109
|
-
data: { nodeName: (0,
|
91
|
+
data: { nodeName: _utilsjs.getNodeName.call(void 0, node.parent) }
|
110
92
|
});
|
111
93
|
return;
|
112
94
|
}
|
@@ -119,7 +101,7 @@ const DATE_REGEX = /^\d{2}\/\d{2}\/\d{4}$/, MESSAGE_REQUIRE_DATE = "MESSAGE_REQU
|
|
119
101
|
messageId: MESSAGE_INVALID_DATE,
|
120
102
|
data: {
|
121
103
|
deletionDate,
|
122
|
-
nodeName: (0,
|
104
|
+
nodeName: _utilsjs.getNodeName.call(void 0, node.parent)
|
123
105
|
}
|
124
106
|
});
|
125
107
|
return;
|
@@ -129,7 +111,7 @@ const DATE_REGEX = /^\d{2}\/\d{2}\/\d{4}$/, MESSAGE_REQUIRE_DATE = "MESSAGE_REQU
|
|
129
111
|
context.report({
|
130
112
|
node: parent.name,
|
131
113
|
messageId: MESSAGE_CAN_BE_REMOVED,
|
132
|
-
data: { nodeName: (0,
|
114
|
+
data: { nodeName: _utilsjs.getNodeName.call(void 0, parent) },
|
133
115
|
suggest: [
|
134
116
|
{
|
135
117
|
desc: `Remove \`${nodeName}\``,
|
@@ -142,7 +124,6 @@ const DATE_REGEX = /^\d{2}\/\d{2}\/\d{4}$/, MESSAGE_REQUIRE_DATE = "MESSAGE_REQU
|
|
142
124
|
};
|
143
125
|
}
|
144
126
|
};
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
});
|
127
|
+
|
128
|
+
|
129
|
+
exports.rule = rule;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GraphQLESLintRule } from '../../types.cjs';
|
2
|
+
import 'eslint';
|
3
|
+
import 'estree';
|
4
|
+
import 'graphql';
|
5
|
+
import 'graphql-config';
|
6
|
+
import 'json-schema-to-ts';
|
7
|
+
import '../../estree-converter/types.cjs';
|
8
|
+
import '../../siblings.cjs';
|
9
|
+
import '@graphql-tools/utils';
|
10
|
+
|
11
|
+
declare const rule: GraphQLESLintRule;
|
12
|
+
|
13
|
+
export { rule };
|