-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathschemaPrinter.js
426 lines (385 loc) · 10.8 KB
/
schemaPrinter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
*/
import isNullish from '../jsutils/isNullish';
import isInvalid from '../jsutils/isInvalid';
import objectValues from '../jsutils/objectValues';
import { astFromValue } from '../utilities/astFromValue';
import { print } from '../language/printer';
import type { GraphQLSchema } from '../type/schema';
import {
isScalarType,
isObjectType,
isInterfaceType,
isUnionType,
isEnumType,
isInputObjectType,
} from '../type/definition';
import type {
GraphQLNamedType,
GraphQLScalarType,
GraphQLEnumType,
GraphQLObjectType,
GraphQLInterfaceType,
GraphQLUnionType,
GraphQLInputObjectType,
} from '../type/definition';
import { GraphQLString, isSpecifiedScalarType } from '../type/scalars';
import {
GraphQLDirective,
DEFAULT_DEPRECATION_REASON,
isSpecifiedDirective,
} from '../type/directives';
import { isIntrospectionType } from '../type/introspection';
type Options = {|
/**
* Descriptions are defined as preceding string literals, however an older
* experimental version of the SDL supported preceding comments as
* descriptions. Set to true to enable this deprecated behavior.
* This option is provided to ease adoption and will be removed in v16.
*
* Default: false
*/
commentDescriptions?: boolean,
|};
/**
* Accepts options as a second argument:
*
* - commentDescriptions:
* Provide true to use preceding comments as the description.
*
*/
export function printSchema(schema: GraphQLSchema, options?: Options): string {
return printFilteredSchema(
schema,
n => !isSpecifiedDirective(n),
isDefinedType,
options,
);
}
export function printIntrospectionSchema(
schema: GraphQLSchema,
options?: Options,
): string {
return printFilteredSchema(
schema,
isSpecifiedDirective,
isIntrospectionType,
options,
);
}
function isDefinedType(type: GraphQLNamedType): boolean {
return !isSpecifiedScalarType(type) && !isIntrospectionType(type);
}
function printFilteredSchema(
schema: GraphQLSchema,
directiveFilter: (type: GraphQLDirective) => boolean,
typeFilter: (type: GraphQLNamedType) => boolean,
options,
): string {
const directives = schema.getDirectives().filter(directiveFilter);
const typeMap = schema.getTypeMap();
const types = objectValues(typeMap)
.sort((type1, type2) => type1.name.localeCompare(type2.name))
.filter(typeFilter);
return (
[printSchemaDefinition(schema)]
.concat(
directives.map(directive => printDirective(directive, options)),
types.map(type => printType(type, options)),
)
.filter(Boolean)
.join('\n\n') + '\n'
);
}
function printSchemaDefinition(schema: GraphQLSchema): ?string {
if (isSchemaOfCommonNames(schema)) {
return;
}
const operationTypes = [];
const queryType = schema.getQueryType();
if (queryType) {
operationTypes.push(` query: ${queryType.name}`);
}
const mutationType = schema.getMutationType();
if (mutationType) {
operationTypes.push(` mutation: ${mutationType.name}`);
}
const subscriptionType = schema.getSubscriptionType();
if (subscriptionType) {
operationTypes.push(` subscription: ${subscriptionType.name}`);
}
return `schema {\n${operationTypes.join('\n')}\n}`;
}
/**
* GraphQL schema define root types for each type of operation. These types are
* the same as any other type and can be named in any manner, however there is
* a common naming convention:
*
* schema {
* query: Query
* mutation: Mutation
* }
*
* When using this naming convention, the schema description can be omitted.
*/
function isSchemaOfCommonNames(schema: GraphQLSchema): boolean {
const queryType = schema.getQueryType();
if (queryType && queryType.name !== 'Query') {
return false;
}
const mutationType = schema.getMutationType();
if (mutationType && mutationType.name !== 'Mutation') {
return false;
}
const subscriptionType = schema.getSubscriptionType();
if (subscriptionType && subscriptionType.name !== 'Subscription') {
return false;
}
return true;
}
export function printType(type: GraphQLNamedType, options?: Options): string {
if (isScalarType(type)) {
return printScalar(type, options);
} else if (isObjectType(type)) {
return printObject(type, options);
} else if (isInterfaceType(type)) {
return printInterface(type, options);
} else if (isUnionType(type)) {
return printUnion(type, options);
} else if (isEnumType(type)) {
return printEnum(type, options);
} else if (isInputObjectType(type)) {
return printInputObject(type, options);
}
/* istanbul ignore next */
throw new Error(`Unknown type: ${(type: empty)}.`);
}
function printScalar(type: GraphQLScalarType, options): string {
const ofType = type.ofType ? ` as ${type.ofType.name}` : '';
return printDescription(options, type) + `scalar ${type.name}${ofType}`;
}
function printObject(type: GraphQLObjectType, options): string {
const interfaces = type.getInterfaces();
const implementedInterfaces = interfaces.length
? ' implements ' + interfaces.map(i => i.name).join(' & ')
: '';
return (
printDescription(options, type) +
`type ${type.name}${implementedInterfaces} {\n` +
printFields(options, type) +
'\n' +
'}'
);
}
function printInterface(type: GraphQLInterfaceType, options): string {
return (
printDescription(options, type) +
`interface ${type.name} {\n` +
printFields(options, type) +
'\n' +
'}'
);
}
function printUnion(type: GraphQLUnionType, options): string {
return (
printDescription(options, type) +
`union ${type.name} = ${type.getTypes().join(' | ')}`
);
}
function printEnum(type: GraphQLEnumType, options): string {
return (
printDescription(options, type) +
`enum ${type.name} {\n` +
printEnumValues(type.getValues(), options) +
'\n' +
'}'
);
}
function printEnumValues(values, options): string {
return values
.map(
(value, i) =>
printDescription(options, value, ' ', !i) +
' ' +
value.name +
printDeprecated(value),
)
.join('\n');
}
function printInputObject(type: GraphQLInputObjectType, options): string {
const fields = objectValues(type.getFields());
return (
printDescription(options, type) +
`input ${type.name} {\n` +
fields
.map(
(f, i) =>
printDescription(options, f, ' ', !i) + ' ' + printInputValue(f),
)
.join('\n') +
'\n' +
'}'
);
}
function printFields(options, type) {
const fields = objectValues(type.getFields());
return fields
.map(
(f, i) =>
printDescription(options, f, ' ', !i) +
' ' +
f.name +
printArgs(options, f.args, ' ') +
': ' +
String(f.type) +
printDeprecated(f),
)
.join('\n');
}
function printArgs(options, args, indentation = '') {
if (args.length === 0) {
return '';
}
// If every arg does not have a description, print them on one line.
if (args.every(arg => !arg.description)) {
return '(' + args.map(printInputValue).join(', ') + ')';
}
return (
'(\n' +
args
.map(
(arg, i) =>
printDescription(options, arg, ' ' + indentation, !i) +
' ' +
indentation +
printInputValue(arg),
)
.join('\n') +
'\n' +
indentation +
')'
);
}
function printInputValue(arg) {
let argDecl = arg.name + ': ' + String(arg.type);
if (!isInvalid(arg.defaultValue)) {
argDecl += ` = ${print(astFromValue(arg.defaultValue, arg.type))}`;
}
return argDecl;
}
function printDirective(directive, options) {
return (
printDescription(options, directive) +
'directive @' +
directive.name +
printArgs(options, directive.args) +
' on ' +
directive.locations.join(' | ')
);
}
function printDeprecated(fieldOrEnumVal) {
if (!fieldOrEnumVal.isDeprecated) {
return '';
}
const reason = fieldOrEnumVal.deprecationReason;
if (
isNullish(reason) ||
reason === '' ||
reason === DEFAULT_DEPRECATION_REASON
) {
return ' @deprecated';
}
return (
' @deprecated(reason: ' + print(astFromValue(reason, GraphQLString)) + ')'
);
}
function printDescription(
options,
def,
indentation = '',
firstInBlock = true,
): string {
if (!def.description) {
return '';
}
const lines = descriptionLines(def.description, 120 - indentation.length);
if (options && options.commentDescriptions) {
return printDescriptionWithComments(lines, indentation, firstInBlock);
}
let description =
indentation && !firstInBlock
? '\n' + indentation + '"""'
: indentation + '"""';
// In some circumstances, a single line can be used for the description.
if (
lines.length === 1 &&
lines[0].length < 70 &&
lines[0][lines[0].length - 1] !== '"'
) {
return description + escapeQuote(lines[0]) + '"""\n';
}
// Format a multi-line block quote to account for leading space.
const hasLeadingSpace = lines[0][0] === ' ' || lines[0][0] === '\t';
if (!hasLeadingSpace) {
description += '\n';
}
for (let i = 0; i < lines.length; i++) {
if (i !== 0 || !hasLeadingSpace) {
description += indentation;
}
description += escapeQuote(lines[i]) + '\n';
}
description += indentation + '"""\n';
return description;
}
function escapeQuote(line) {
return line.replace(/"""/g, '\\"""');
}
function printDescriptionWithComments(lines, indentation, firstInBlock) {
let description = indentation && !firstInBlock ? '\n' : '';
for (let i = 0; i < lines.length; i++) {
if (lines[i] === '') {
description += indentation + '#\n';
} else {
description += indentation + '# ' + lines[i] + '\n';
}
}
return description;
}
function descriptionLines(description: string, maxLen: number): Array<string> {
const lines = [];
const rawLines = description.split('\n');
for (let i = 0; i < rawLines.length; i++) {
if (rawLines[i] === '') {
lines.push(rawLines[i]);
} else {
// For > 120 character long lines, cut at space boundaries into sublines
// of ~80 chars.
const sublines = breakLine(rawLines[i], maxLen);
for (let j = 0; j < sublines.length; j++) {
lines.push(sublines[j]);
}
}
}
return lines;
}
function breakLine(line: string, maxLen: number): Array<string> {
if (line.length < maxLen + 5) {
return [line];
}
const parts = line.split(new RegExp(`((?: |^).{15,${maxLen - 40}}(?= |$))`));
if (parts.length < 4) {
return [line];
}
const sublines = [parts[0] + parts[1] + parts[2]];
for (let i = 3; i < parts.length; i += 2) {
sublines.push(parts[i].slice(1) + parts[i + 1]);
}
return sublines;
}