@suss/contract-graphql 0.0.1
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.
- package/LICENSE +205 -0
- package/dist/index.cjs +235 -0
- package/dist/index.d.cts +45 -0
- package/dist/index.d.ts +45 -0
- package/dist/index.js +201 -0
- package/package.json +59 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable by
|
|
79
|
+
such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or Derivative
|
|
95
|
+
Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and do not
|
|
117
|
+
modify the License. You may add Your own attribution notices
|
|
118
|
+
within Derivative Works that You distribute, alongside or as an
|
|
119
|
+
addendum to the NOTICE text from the Work, provided that such
|
|
120
|
+
additional attribution notices cannot be construed as modifying
|
|
121
|
+
the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor has
|
|
163
|
+
been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format please. Also add information on
|
|
185
|
+
how to contact you by electronic and paper mail.
|
|
186
|
+
|
|
187
|
+
If the program does not interact with users remotely through a computer
|
|
188
|
+
network, then your name and employer's name (e.g., your institution)
|
|
189
|
+
is sufficient to fill in the "name of copyright owner" field. Feel
|
|
190
|
+
free to omit the "name of employer" line if you are in no way affiliated
|
|
191
|
+
with any institution.
|
|
192
|
+
|
|
193
|
+
Copyright 2026 Nimbus Cloud AI LLC
|
|
194
|
+
|
|
195
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
196
|
+
you may not use this file except in compliance with the License.
|
|
197
|
+
You may obtain a copy of the License at
|
|
198
|
+
|
|
199
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
200
|
+
|
|
201
|
+
Unless required by applicable law or agreed to in writing, software
|
|
202
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
203
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
204
|
+
See the License for the specific language governing permissions and
|
|
205
|
+
limitations under the License.
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// src/index.ts
|
|
31
|
+
var index_exports = {};
|
|
32
|
+
__export(index_exports, {
|
|
33
|
+
graphqlSdlFileToSummaries: () => graphqlSdlFileToSummaries,
|
|
34
|
+
graphqlSdlToSummaries: () => graphqlSdlToSummaries,
|
|
35
|
+
loadSdlFile: () => loadSdlFile
|
|
36
|
+
});
|
|
37
|
+
module.exports = __toCommonJS(index_exports);
|
|
38
|
+
var import_node_fs = __toESM(require("fs"), 1);
|
|
39
|
+
var import_graphql = require("graphql");
|
|
40
|
+
var import_behavioral_ir = require("@suss/behavioral-ir");
|
|
41
|
+
var ROOT_TYPES = ["Query", "Mutation", "Subscription"];
|
|
42
|
+
function graphqlSdlToSummaries(sdl, options = {}) {
|
|
43
|
+
let doc;
|
|
44
|
+
try {
|
|
45
|
+
doc = (0, import_graphql.parse)(sdl);
|
|
46
|
+
} catch (_err) {
|
|
47
|
+
return [];
|
|
48
|
+
}
|
|
49
|
+
const source = options.source ?? "graphql";
|
|
50
|
+
const recognition = options.recognition ?? "graphql";
|
|
51
|
+
const transport = options.transport ?? "http-graphql";
|
|
52
|
+
const out = [];
|
|
53
|
+
const rootFields = collectRootFields(doc);
|
|
54
|
+
for (const { rootType, field } of rootFields) {
|
|
55
|
+
out.push(
|
|
56
|
+
buildResolverSummary(rootType, field, source, recognition, transport)
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
return out;
|
|
60
|
+
}
|
|
61
|
+
function graphqlSdlFileToSummaries(filepath, options = {}) {
|
|
62
|
+
const sdl = import_node_fs.default.readFileSync(filepath, "utf8");
|
|
63
|
+
return graphqlSdlToSummaries(sdl, {
|
|
64
|
+
source: filepath,
|
|
65
|
+
...options
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
function loadSdlFile(filepath) {
|
|
69
|
+
try {
|
|
70
|
+
return import_node_fs.default.readFileSync(filepath, "utf8");
|
|
71
|
+
} catch {
|
|
72
|
+
return null;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
function collectRootFields(doc) {
|
|
76
|
+
const fieldsByRoot = /* @__PURE__ */ new Map();
|
|
77
|
+
for (const def of doc.definitions) {
|
|
78
|
+
const node = def.kind === import_graphql.Kind.OBJECT_TYPE_DEFINITION || def.kind === import_graphql.Kind.OBJECT_TYPE_EXTENSION ? def : null;
|
|
79
|
+
if (node === null) {
|
|
80
|
+
continue;
|
|
81
|
+
}
|
|
82
|
+
const name = node.name.value;
|
|
83
|
+
if (!isRootType(name)) {
|
|
84
|
+
continue;
|
|
85
|
+
}
|
|
86
|
+
const existing = fieldsByRoot.get(name) ?? [];
|
|
87
|
+
for (const field of node.fields ?? []) {
|
|
88
|
+
existing.push(field);
|
|
89
|
+
}
|
|
90
|
+
fieldsByRoot.set(name, existing);
|
|
91
|
+
}
|
|
92
|
+
const out = [];
|
|
93
|
+
for (const rootType of ROOT_TYPES) {
|
|
94
|
+
const fields = fieldsByRoot.get(rootType);
|
|
95
|
+
if (fields === void 0) {
|
|
96
|
+
continue;
|
|
97
|
+
}
|
|
98
|
+
for (const field of fields) {
|
|
99
|
+
out.push({ rootType, field });
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
return out;
|
|
103
|
+
}
|
|
104
|
+
function isRootType(name) {
|
|
105
|
+
return ROOT_TYPES.includes(name);
|
|
106
|
+
}
|
|
107
|
+
function buildResolverSummary(rootType, field, source, recognition, transport) {
|
|
108
|
+
const fieldName = field.name.value;
|
|
109
|
+
const ownerKey = `${rootType}.${fieldName}`;
|
|
110
|
+
return {
|
|
111
|
+
kind: "resolver",
|
|
112
|
+
location: {
|
|
113
|
+
file: `${source}:${ownerKey}`,
|
|
114
|
+
range: { start: 0, end: 0 },
|
|
115
|
+
exportName: null
|
|
116
|
+
},
|
|
117
|
+
identity: {
|
|
118
|
+
name: ownerKey,
|
|
119
|
+
exportPath: null,
|
|
120
|
+
boundaryBinding: (0, import_behavioral_ir.graphqlResolverBinding)({
|
|
121
|
+
transport,
|
|
122
|
+
recognition,
|
|
123
|
+
typeName: rootType,
|
|
124
|
+
fieldName
|
|
125
|
+
})
|
|
126
|
+
},
|
|
127
|
+
inputs: buildInputs(field),
|
|
128
|
+
transitions: buildTransitions(ownerKey, field),
|
|
129
|
+
gaps: [],
|
|
130
|
+
confidence: { source: "derived", level: "high" },
|
|
131
|
+
metadata: {
|
|
132
|
+
graphql: {
|
|
133
|
+
rootType,
|
|
134
|
+
fieldName,
|
|
135
|
+
// Declared contract — checker pairs against any other source
|
|
136
|
+
// declaring a contract for the same gql:Type.field key.
|
|
137
|
+
// Provenance is "derived" because both this metadata and the
|
|
138
|
+
// summary's transitions come from the same SDL field
|
|
139
|
+
// declaration; self-comparison would be tautological.
|
|
140
|
+
declaredContract: buildDeclaredContract(field, recognition)
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
function buildDeclaredContract(field, recognition) {
|
|
146
|
+
return {
|
|
147
|
+
returnType: typeNodeToShape(field.type),
|
|
148
|
+
args: (field.arguments ?? []).map((arg) => ({
|
|
149
|
+
name: arg.name.value,
|
|
150
|
+
type: typeNodeToShape(arg.type),
|
|
151
|
+
required: arg.type.kind === import_graphql.Kind.NON_NULL_TYPE
|
|
152
|
+
})),
|
|
153
|
+
provenance: "derived",
|
|
154
|
+
framework: recognition
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
function buildInputs(field) {
|
|
158
|
+
const args = field.arguments ?? [];
|
|
159
|
+
return args.map((arg, index) => ({
|
|
160
|
+
type: "parameter",
|
|
161
|
+
name: arg.name.value,
|
|
162
|
+
position: index,
|
|
163
|
+
role: "args",
|
|
164
|
+
shape: typeNodeToShape(arg.type)
|
|
165
|
+
}));
|
|
166
|
+
}
|
|
167
|
+
function buildTransitions(ownerKey, field) {
|
|
168
|
+
const returnShape = typeNodeToShape(field.type);
|
|
169
|
+
return [
|
|
170
|
+
{
|
|
171
|
+
id: `${ownerKey}:return:success`,
|
|
172
|
+
conditions: [],
|
|
173
|
+
output: { type: "return", value: returnShape },
|
|
174
|
+
effects: [],
|
|
175
|
+
location: { start: 0, end: 0 },
|
|
176
|
+
isDefault: true,
|
|
177
|
+
confidence: { source: "derived", level: "high" },
|
|
178
|
+
metadata: {
|
|
179
|
+
source: "graphql:resolver.success"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
id: `${ownerKey}:throw:error`,
|
|
184
|
+
conditions: [
|
|
185
|
+
{
|
|
186
|
+
type: "opaque",
|
|
187
|
+
sourceText: "graphql:resolver-error",
|
|
188
|
+
reason: "externalFunction"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
output: {
|
|
192
|
+
type: "throw",
|
|
193
|
+
exceptionType: "GraphQLError",
|
|
194
|
+
message: null
|
|
195
|
+
},
|
|
196
|
+
effects: [],
|
|
197
|
+
location: { start: 0, end: 0 },
|
|
198
|
+
isDefault: false,
|
|
199
|
+
confidence: { source: "derived", level: "low" },
|
|
200
|
+
metadata: {
|
|
201
|
+
source: "graphql:resolver.error"
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
];
|
|
205
|
+
}
|
|
206
|
+
function typeNodeToShape(node) {
|
|
207
|
+
if (node.kind === import_graphql.Kind.NON_NULL_TYPE) {
|
|
208
|
+
return typeNodeToShape(node.type);
|
|
209
|
+
}
|
|
210
|
+
if (node.kind === import_graphql.Kind.LIST_TYPE) {
|
|
211
|
+
return { type: "array", items: typeNodeToShape(node.type) };
|
|
212
|
+
}
|
|
213
|
+
return scalarOrRef(node);
|
|
214
|
+
}
|
|
215
|
+
function scalarOrRef(node) {
|
|
216
|
+
const name = node.name.value;
|
|
217
|
+
switch (name) {
|
|
218
|
+
case "String":
|
|
219
|
+
case "ID":
|
|
220
|
+
return { type: "text" };
|
|
221
|
+
case "Int":
|
|
222
|
+
case "Float":
|
|
223
|
+
return { type: "number" };
|
|
224
|
+
case "Boolean":
|
|
225
|
+
return { type: "boolean" };
|
|
226
|
+
default:
|
|
227
|
+
return { type: "ref", name };
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
231
|
+
0 && (module.exports = {
|
|
232
|
+
graphqlSdlFileToSummaries,
|
|
233
|
+
graphqlSdlToSummaries,
|
|
234
|
+
loadSdlFile
|
|
235
|
+
});
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { BehavioralSummary } from '@suss/behavioral-ir';
|
|
2
|
+
|
|
3
|
+
interface GraphqlContractOptions {
|
|
4
|
+
/**
|
|
5
|
+
* Logical source path recorded on each summary's `location.file`.
|
|
6
|
+
* Defaults to `"graphql"` so summaries are identifiable even when
|
|
7
|
+
* the SDL came from a non-file source (in-memory string).
|
|
8
|
+
*/
|
|
9
|
+
source?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Recognition tag for the resolver binding. Defaults to `"graphql"`.
|
|
12
|
+
* Override when the same SDL is used by multiple deployments
|
|
13
|
+
* (`apollo-prod`, `apollo-staging`) and you want findings to
|
|
14
|
+
* distinguish them.
|
|
15
|
+
*/
|
|
16
|
+
recognition?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Transport to record on the boundary binding. Defaults to
|
|
19
|
+
* `"http-graphql"` — most GraphQL servers run over HTTPS.
|
|
20
|
+
*/
|
|
21
|
+
transport?: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Convert an SDL string into resolver-kind summaries. Used directly
|
|
25
|
+
* when the caller has the SDL in memory; tests and the file-based
|
|
26
|
+
* entry point share this code path.
|
|
27
|
+
*/
|
|
28
|
+
declare function graphqlSdlToSummaries(sdl: string, options?: GraphqlContractOptions): BehavioralSummary[];
|
|
29
|
+
/**
|
|
30
|
+
* Read an SDL file from disk and convert it to summaries. Convenience
|
|
31
|
+
* wrapper for the CLI's `suss contract --from graphql <file>` path.
|
|
32
|
+
*/
|
|
33
|
+
declare function graphqlSdlFileToSummaries(filepath: string, options?: GraphqlContractOptions): BehavioralSummary[];
|
|
34
|
+
/**
|
|
35
|
+
* Read an SDL file from disk and return its text, or `null` when the
|
|
36
|
+
* file can't be read. Shared entry point for callers that need the raw
|
|
37
|
+
* SDL rather than the derived summaries — e.g. @suss/contract-appsync
|
|
38
|
+
* resolving an external schema file referenced by a CloudFormation /
|
|
39
|
+
* SAM template's `DefinitionS3Location` / `SchemaUri`. Reading fails
|
|
40
|
+
* best-effort (missing file, permission error) so the caller can record
|
|
41
|
+
* an unresolved-schema gap instead of throwing.
|
|
42
|
+
*/
|
|
43
|
+
declare function loadSdlFile(filepath: string): string | null;
|
|
44
|
+
|
|
45
|
+
export { type GraphqlContractOptions, graphqlSdlFileToSummaries, graphqlSdlToSummaries, loadSdlFile };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { BehavioralSummary } from '@suss/behavioral-ir';
|
|
2
|
+
|
|
3
|
+
interface GraphqlContractOptions {
|
|
4
|
+
/**
|
|
5
|
+
* Logical source path recorded on each summary's `location.file`.
|
|
6
|
+
* Defaults to `"graphql"` so summaries are identifiable even when
|
|
7
|
+
* the SDL came from a non-file source (in-memory string).
|
|
8
|
+
*/
|
|
9
|
+
source?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Recognition tag for the resolver binding. Defaults to `"graphql"`.
|
|
12
|
+
* Override when the same SDL is used by multiple deployments
|
|
13
|
+
* (`apollo-prod`, `apollo-staging`) and you want findings to
|
|
14
|
+
* distinguish them.
|
|
15
|
+
*/
|
|
16
|
+
recognition?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Transport to record on the boundary binding. Defaults to
|
|
19
|
+
* `"http-graphql"` — most GraphQL servers run over HTTPS.
|
|
20
|
+
*/
|
|
21
|
+
transport?: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Convert an SDL string into resolver-kind summaries. Used directly
|
|
25
|
+
* when the caller has the SDL in memory; tests and the file-based
|
|
26
|
+
* entry point share this code path.
|
|
27
|
+
*/
|
|
28
|
+
declare function graphqlSdlToSummaries(sdl: string, options?: GraphqlContractOptions): BehavioralSummary[];
|
|
29
|
+
/**
|
|
30
|
+
* Read an SDL file from disk and convert it to summaries. Convenience
|
|
31
|
+
* wrapper for the CLI's `suss contract --from graphql <file>` path.
|
|
32
|
+
*/
|
|
33
|
+
declare function graphqlSdlFileToSummaries(filepath: string, options?: GraphqlContractOptions): BehavioralSummary[];
|
|
34
|
+
/**
|
|
35
|
+
* Read an SDL file from disk and return its text, or `null` when the
|
|
36
|
+
* file can't be read. Shared entry point for callers that need the raw
|
|
37
|
+
* SDL rather than the derived summaries — e.g. @suss/contract-appsync
|
|
38
|
+
* resolving an external schema file referenced by a CloudFormation /
|
|
39
|
+
* SAM template's `DefinitionS3Location` / `SchemaUri`. Reading fails
|
|
40
|
+
* best-effort (missing file, permission error) so the caller can record
|
|
41
|
+
* an unresolved-schema gap instead of throwing.
|
|
42
|
+
*/
|
|
43
|
+
declare function loadSdlFile(filepath: string): string | null;
|
|
44
|
+
|
|
45
|
+
export { type GraphqlContractOptions, graphqlSdlFileToSummaries, graphqlSdlToSummaries, loadSdlFile };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
import fs from "fs";
|
|
3
|
+
import {
|
|
4
|
+
Kind,
|
|
5
|
+
parse
|
|
6
|
+
} from "graphql";
|
|
7
|
+
import { graphqlResolverBinding } from "@suss/behavioral-ir";
|
|
8
|
+
var ROOT_TYPES = ["Query", "Mutation", "Subscription"];
|
|
9
|
+
function graphqlSdlToSummaries(sdl, options = {}) {
|
|
10
|
+
let doc;
|
|
11
|
+
try {
|
|
12
|
+
doc = parse(sdl);
|
|
13
|
+
} catch (_err) {
|
|
14
|
+
return [];
|
|
15
|
+
}
|
|
16
|
+
const source = options.source ?? "graphql";
|
|
17
|
+
const recognition = options.recognition ?? "graphql";
|
|
18
|
+
const transport = options.transport ?? "http-graphql";
|
|
19
|
+
const out = [];
|
|
20
|
+
const rootFields = collectRootFields(doc);
|
|
21
|
+
for (const { rootType, field } of rootFields) {
|
|
22
|
+
out.push(
|
|
23
|
+
buildResolverSummary(rootType, field, source, recognition, transport)
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
return out;
|
|
27
|
+
}
|
|
28
|
+
function graphqlSdlFileToSummaries(filepath, options = {}) {
|
|
29
|
+
const sdl = fs.readFileSync(filepath, "utf8");
|
|
30
|
+
return graphqlSdlToSummaries(sdl, {
|
|
31
|
+
source: filepath,
|
|
32
|
+
...options
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
function loadSdlFile(filepath) {
|
|
36
|
+
try {
|
|
37
|
+
return fs.readFileSync(filepath, "utf8");
|
|
38
|
+
} catch {
|
|
39
|
+
return null;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
function collectRootFields(doc) {
|
|
43
|
+
const fieldsByRoot = /* @__PURE__ */ new Map();
|
|
44
|
+
for (const def of doc.definitions) {
|
|
45
|
+
const node = def.kind === Kind.OBJECT_TYPE_DEFINITION || def.kind === Kind.OBJECT_TYPE_EXTENSION ? def : null;
|
|
46
|
+
if (node === null) {
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
const name = node.name.value;
|
|
50
|
+
if (!isRootType(name)) {
|
|
51
|
+
continue;
|
|
52
|
+
}
|
|
53
|
+
const existing = fieldsByRoot.get(name) ?? [];
|
|
54
|
+
for (const field of node.fields ?? []) {
|
|
55
|
+
existing.push(field);
|
|
56
|
+
}
|
|
57
|
+
fieldsByRoot.set(name, existing);
|
|
58
|
+
}
|
|
59
|
+
const out = [];
|
|
60
|
+
for (const rootType of ROOT_TYPES) {
|
|
61
|
+
const fields = fieldsByRoot.get(rootType);
|
|
62
|
+
if (fields === void 0) {
|
|
63
|
+
continue;
|
|
64
|
+
}
|
|
65
|
+
for (const field of fields) {
|
|
66
|
+
out.push({ rootType, field });
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return out;
|
|
70
|
+
}
|
|
71
|
+
function isRootType(name) {
|
|
72
|
+
return ROOT_TYPES.includes(name);
|
|
73
|
+
}
|
|
74
|
+
function buildResolverSummary(rootType, field, source, recognition, transport) {
|
|
75
|
+
const fieldName = field.name.value;
|
|
76
|
+
const ownerKey = `${rootType}.${fieldName}`;
|
|
77
|
+
return {
|
|
78
|
+
kind: "resolver",
|
|
79
|
+
location: {
|
|
80
|
+
file: `${source}:${ownerKey}`,
|
|
81
|
+
range: { start: 0, end: 0 },
|
|
82
|
+
exportName: null
|
|
83
|
+
},
|
|
84
|
+
identity: {
|
|
85
|
+
name: ownerKey,
|
|
86
|
+
exportPath: null,
|
|
87
|
+
boundaryBinding: graphqlResolverBinding({
|
|
88
|
+
transport,
|
|
89
|
+
recognition,
|
|
90
|
+
typeName: rootType,
|
|
91
|
+
fieldName
|
|
92
|
+
})
|
|
93
|
+
},
|
|
94
|
+
inputs: buildInputs(field),
|
|
95
|
+
transitions: buildTransitions(ownerKey, field),
|
|
96
|
+
gaps: [],
|
|
97
|
+
confidence: { source: "derived", level: "high" },
|
|
98
|
+
metadata: {
|
|
99
|
+
graphql: {
|
|
100
|
+
rootType,
|
|
101
|
+
fieldName,
|
|
102
|
+
// Declared contract — checker pairs against any other source
|
|
103
|
+
// declaring a contract for the same gql:Type.field key.
|
|
104
|
+
// Provenance is "derived" because both this metadata and the
|
|
105
|
+
// summary's transitions come from the same SDL field
|
|
106
|
+
// declaration; self-comparison would be tautological.
|
|
107
|
+
declaredContract: buildDeclaredContract(field, recognition)
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
function buildDeclaredContract(field, recognition) {
|
|
113
|
+
return {
|
|
114
|
+
returnType: typeNodeToShape(field.type),
|
|
115
|
+
args: (field.arguments ?? []).map((arg) => ({
|
|
116
|
+
name: arg.name.value,
|
|
117
|
+
type: typeNodeToShape(arg.type),
|
|
118
|
+
required: arg.type.kind === Kind.NON_NULL_TYPE
|
|
119
|
+
})),
|
|
120
|
+
provenance: "derived",
|
|
121
|
+
framework: recognition
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
function buildInputs(field) {
|
|
125
|
+
const args = field.arguments ?? [];
|
|
126
|
+
return args.map((arg, index) => ({
|
|
127
|
+
type: "parameter",
|
|
128
|
+
name: arg.name.value,
|
|
129
|
+
position: index,
|
|
130
|
+
role: "args",
|
|
131
|
+
shape: typeNodeToShape(arg.type)
|
|
132
|
+
}));
|
|
133
|
+
}
|
|
134
|
+
function buildTransitions(ownerKey, field) {
|
|
135
|
+
const returnShape = typeNodeToShape(field.type);
|
|
136
|
+
return [
|
|
137
|
+
{
|
|
138
|
+
id: `${ownerKey}:return:success`,
|
|
139
|
+
conditions: [],
|
|
140
|
+
output: { type: "return", value: returnShape },
|
|
141
|
+
effects: [],
|
|
142
|
+
location: { start: 0, end: 0 },
|
|
143
|
+
isDefault: true,
|
|
144
|
+
confidence: { source: "derived", level: "high" },
|
|
145
|
+
metadata: {
|
|
146
|
+
source: "graphql:resolver.success"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
id: `${ownerKey}:throw:error`,
|
|
151
|
+
conditions: [
|
|
152
|
+
{
|
|
153
|
+
type: "opaque",
|
|
154
|
+
sourceText: "graphql:resolver-error",
|
|
155
|
+
reason: "externalFunction"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
output: {
|
|
159
|
+
type: "throw",
|
|
160
|
+
exceptionType: "GraphQLError",
|
|
161
|
+
message: null
|
|
162
|
+
},
|
|
163
|
+
effects: [],
|
|
164
|
+
location: { start: 0, end: 0 },
|
|
165
|
+
isDefault: false,
|
|
166
|
+
confidence: { source: "derived", level: "low" },
|
|
167
|
+
metadata: {
|
|
168
|
+
source: "graphql:resolver.error"
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
];
|
|
172
|
+
}
|
|
173
|
+
function typeNodeToShape(node) {
|
|
174
|
+
if (node.kind === Kind.NON_NULL_TYPE) {
|
|
175
|
+
return typeNodeToShape(node.type);
|
|
176
|
+
}
|
|
177
|
+
if (node.kind === Kind.LIST_TYPE) {
|
|
178
|
+
return { type: "array", items: typeNodeToShape(node.type) };
|
|
179
|
+
}
|
|
180
|
+
return scalarOrRef(node);
|
|
181
|
+
}
|
|
182
|
+
function scalarOrRef(node) {
|
|
183
|
+
const name = node.name.value;
|
|
184
|
+
switch (name) {
|
|
185
|
+
case "String":
|
|
186
|
+
case "ID":
|
|
187
|
+
return { type: "text" };
|
|
188
|
+
case "Int":
|
|
189
|
+
case "Float":
|
|
190
|
+
return { type: "number" };
|
|
191
|
+
case "Boolean":
|
|
192
|
+
return { type: "boolean" };
|
|
193
|
+
default:
|
|
194
|
+
return { type: "ref", name };
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
export {
|
|
198
|
+
graphqlSdlFileToSummaries,
|
|
199
|
+
graphqlSdlToSummaries,
|
|
200
|
+
loadSdlFile
|
|
201
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@suss/contract-graphql",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Generate behavioral summaries from a plain GraphQL SDL file (Query/Mutation/Subscription field definitions become resolver-kind summaries).",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"suss",
|
|
8
|
+
"behavioral-summary",
|
|
9
|
+
"graphql",
|
|
10
|
+
"contract",
|
|
11
|
+
"static-analysis"
|
|
12
|
+
],
|
|
13
|
+
"license": "Apache-2.0",
|
|
14
|
+
"author": "Nimbus Cloud AI LLC",
|
|
15
|
+
"homepage": "https://github.com/nimbuscloud-ai/suss/tree/main/packages/contract/graphql#readme",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/nimbuscloud-ai/suss.git",
|
|
19
|
+
"directory": "packages/contract/graphql"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/nimbuscloud-ai/suss/issues"
|
|
23
|
+
},
|
|
24
|
+
"main": "./dist/index.cjs",
|
|
25
|
+
"module": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist/index.js",
|
|
31
|
+
"require": "./dist/index.cjs"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist",
|
|
36
|
+
"README.md",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsup",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"test:coverage": "vitest run --coverage",
|
|
43
|
+
"lint": "biome check .",
|
|
44
|
+
"lint:fix": "biome check --write .",
|
|
45
|
+
"typecheck": "tsc --noEmit"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@suss/behavioral-ir": "0.0.1",
|
|
49
|
+
"graphql": "^16.8.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"tsup": "*",
|
|
53
|
+
"typescript": "*",
|
|
54
|
+
"vitest": "*"
|
|
55
|
+
},
|
|
56
|
+
"publishConfig": {
|
|
57
|
+
"access": "public"
|
|
58
|
+
}
|
|
59
|
+
}
|