|
1 |
| -import { |
2 |
| - GraphQLSchema, |
3 |
| - isObjectType, |
4 |
| - isInterfaceType, |
5 |
| - isInputObjectType, |
6 |
| - GraphQLField, |
7 |
| - GraphQLInputField, |
8 |
| - isUnionType, |
9 |
| - isScalarType, |
10 |
| - isEnumType, |
11 |
| - isSpecifiedScalarType, |
12 |
| - isIntrospectionType, |
13 |
| - GraphQLObjectType, |
14 |
| - GraphQLInputObjectType, |
15 |
| - GraphQLUnionType, |
16 |
| - GraphQLScalarType, |
17 |
| - GraphQLArgument, |
18 |
| - GraphQLEnumType, |
19 |
| - GraphQLEnumValue, |
20 |
| - GraphQLInterfaceType, |
21 |
| -} from 'graphql'; |
22 |
| -import { Maybe, mergeDeep } from '@graphql-tools/utils'; |
23 |
| - |
24 |
| -export type ExtensionsObject = Record<string, any>; |
25 |
| - |
26 |
| -export type ObjectTypeExtensions = { |
27 |
| - type: 'object'; |
28 |
| - fields: Record<string, { extensions: ExtensionsObject; arguments: Record<string, ExtensionsObject> }>; |
29 |
| -}; |
30 |
| - |
31 |
| -export type InputTypeExtensions = { |
32 |
| - type: 'input'; |
33 |
| - fields: Record<string, { extensions: ExtensionsObject }>; |
34 |
| -}; |
35 |
| - |
36 |
| -export type InterfaceTypeExtensions = { |
37 |
| - type: 'interface'; |
38 |
| - fields: Record<string, { extensions: ExtensionsObject; arguments: Record<string, ExtensionsObject> }>; |
39 |
| -}; |
40 |
| - |
41 |
| -export type UnionTypeExtensions = { |
42 |
| - type: 'union'; |
43 |
| -}; |
44 |
| - |
45 |
| -export type ScalarTypeExtensions = { |
46 |
| - type: 'scalar'; |
47 |
| -}; |
48 |
| - |
49 |
| -export type EnumTypeExtensions = { |
50 |
| - type: 'enum'; |
51 |
| - values: Record<string, ExtensionsObject>; |
52 |
| -}; |
53 |
| - |
54 |
| -export type PossibleTypeExtensions = |
55 |
| - | InputTypeExtensions |
56 |
| - | InterfaceTypeExtensions |
57 |
| - | ObjectTypeExtensions |
58 |
| - | UnionTypeExtensions |
59 |
| - | ScalarTypeExtensions |
60 |
| - | EnumTypeExtensions; |
61 |
| -export type SchemaExtensions = { |
62 |
| - schemaExtensions: ExtensionsObject; |
63 |
| - types: Record<string, { extensions: ExtensionsObject } & PossibleTypeExtensions>; |
64 |
| -}; |
65 |
| - |
66 |
| -export function travelSchemaPossibleExtensions( |
67 |
| - schema: GraphQLSchema, |
68 |
| - hooks: { |
69 |
| - onSchema: (schema: GraphQLSchema) => any; |
70 |
| - onObjectType: (type: GraphQLObjectType) => any; |
71 |
| - onObjectField: (type: GraphQLObjectType, field: GraphQLField<any, any>) => any; |
72 |
| - onObjectFieldArg: (type: GraphQLObjectType, field: GraphQLField<any, any>, arg: GraphQLArgument) => any; |
73 |
| - onInterface: (type: GraphQLInterfaceType) => any; |
74 |
| - onInterfaceField: (type: GraphQLInterfaceType, field: GraphQLField<any, any>) => any; |
75 |
| - onInterfaceFieldArg: (type: GraphQLInterfaceType, field: GraphQLField<any, any>, arg: GraphQLArgument) => any; |
76 |
| - onInputType: (type: GraphQLInputObjectType) => any; |
77 |
| - onInputFieldType: (type: GraphQLInputObjectType, field: GraphQLInputField) => any; |
78 |
| - onUnion: (type: GraphQLUnionType) => any; |
79 |
| - onScalar: (type: GraphQLScalarType) => any; |
80 |
| - onEnum: (type: GraphQLEnumType) => any; |
81 |
| - onEnumValue: (type: GraphQLEnumType, value: GraphQLEnumValue) => any; |
82 |
| - } |
83 |
| -) { |
84 |
| - hooks.onSchema(schema); |
85 |
| - const typesMap = schema.getTypeMap(); |
86 |
| - |
87 |
| - for (const [, type] of Object.entries(typesMap)) { |
88 |
| - const isPredefinedScalar = isScalarType(type) && isSpecifiedScalarType(type); |
89 |
| - const isIntrospection = isIntrospectionType(type); |
90 |
| - |
91 |
| - if (isPredefinedScalar || isIntrospection) { |
92 |
| - continue; |
93 |
| - } |
94 |
| - |
95 |
| - if (isObjectType(type)) { |
96 |
| - hooks.onObjectType(type); |
97 |
| - |
98 |
| - const fields = type.getFields(); |
99 |
| - for (const [, field] of Object.entries(fields)) { |
100 |
| - hooks.onObjectField(type, field); |
101 |
| - |
102 |
| - const args = field.args || []; |
103 |
| - |
104 |
| - for (const arg of args) { |
105 |
| - hooks.onObjectFieldArg(type, field, arg); |
106 |
| - } |
107 |
| - } |
108 |
| - } else if (isInterfaceType(type)) { |
109 |
| - hooks.onInterface(type); |
110 |
| - |
111 |
| - const fields = type.getFields(); |
112 |
| - for (const [, field] of Object.entries(fields)) { |
113 |
| - hooks.onInterfaceField(type, field); |
114 |
| - |
115 |
| - const args = field.args || []; |
116 |
| - |
117 |
| - for (const arg of args) { |
118 |
| - hooks.onInterfaceFieldArg(type, field, arg); |
119 |
| - } |
120 |
| - } |
121 |
| - } else if (isInputObjectType(type)) { |
122 |
| - hooks.onInputType(type); |
123 |
| - |
124 |
| - const fields = type.getFields(); |
125 |
| - for (const [, field] of Object.entries(fields)) { |
126 |
| - hooks.onInputFieldType(type, field); |
127 |
| - } |
128 |
| - } else if (isUnionType(type)) { |
129 |
| - hooks.onUnion(type); |
130 |
| - } else if (isScalarType(type)) { |
131 |
| - hooks.onScalar(type); |
132 |
| - } else if (isEnumType(type)) { |
133 |
| - hooks.onEnum(type); |
134 |
| - |
135 |
| - for (const value of type.getValues()) { |
136 |
| - hooks.onEnumValue(type, value); |
137 |
| - } |
138 |
| - } |
139 |
| - } |
140 |
| -} |
| 1 | +import { GraphQLSchema, GraphQLObjectType, GraphQLEnumType } from 'graphql'; |
| 2 | +import { ExtensionsObject, Maybe, mergeDeep, SchemaExtensions } from '@graphql-tools/utils'; |
141 | 3 |
|
142 | 4 | export function mergeExtensions(extensions: SchemaExtensions[]): SchemaExtensions {
|
143 | 5 | return mergeDeep(extensions);
|
@@ -194,42 +56,3 @@ export function applyExtensions(schema: GraphQLSchema, extensions: SchemaExtensi
|
194 | 56 |
|
195 | 57 | return schema;
|
196 | 58 | }
|
197 |
| - |
198 |
| -export function extractExtensionsFromSchema(schema: GraphQLSchema): SchemaExtensions { |
199 |
| - const result: SchemaExtensions = { |
200 |
| - schemaExtensions: {}, |
201 |
| - types: {}, |
202 |
| - }; |
203 |
| - |
204 |
| - travelSchemaPossibleExtensions(schema, { |
205 |
| - onSchema: schema => (result.schemaExtensions = schema.extensions || {}), |
206 |
| - onObjectType: type => (result.types[type.name] = { fields: {}, type: 'object', extensions: type.extensions || {} }), |
207 |
| - onObjectField: (type, field) => |
208 |
| - ((result.types[type.name] as ObjectTypeExtensions).fields[field.name] = { |
209 |
| - arguments: {}, |
210 |
| - extensions: field.extensions || {}, |
211 |
| - }), |
212 |
| - onObjectFieldArg: (type, field, arg) => |
213 |
| - ((result.types[type.name] as ObjectTypeExtensions).fields[field.name].arguments[arg.name] = arg.extensions || {}), |
214 |
| - onInterface: type => |
215 |
| - (result.types[type.name] = { fields: {}, type: 'interface', extensions: type.extensions || {} }), |
216 |
| - onInterfaceField: (type, field) => |
217 |
| - ((result.types[type.name] as InterfaceTypeExtensions).fields[field.name] = { |
218 |
| - arguments: {}, |
219 |
| - extensions: field.extensions || {}, |
220 |
| - }), |
221 |
| - onInterfaceFieldArg: (type, field, arg) => |
222 |
| - ((result.types[type.name] as InterfaceTypeExtensions).fields[field.name].arguments[arg.name] = |
223 |
| - arg.extensions || {}), |
224 |
| - onEnum: type => (result.types[type.name] = { values: {}, type: 'enum', extensions: type.extensions || {} }), |
225 |
| - onEnumValue: (type, value) => |
226 |
| - ((result.types[type.name] as EnumTypeExtensions).values[value.name] = value.extensions || {}), |
227 |
| - onScalar: type => (result.types[type.name] = { type: 'scalar', extensions: type.extensions || {} }), |
228 |
| - onUnion: type => (result.types[type.name] = { type: 'union', extensions: type.extensions || {} }), |
229 |
| - onInputType: type => (result.types[type.name] = { fields: {}, type: 'input', extensions: type.extensions || {} }), |
230 |
| - onInputFieldType: (type, field) => |
231 |
| - ((result.types[type.name] as InputTypeExtensions).fields[field.name] = { extensions: field.extensions || {} }), |
232 |
| - }); |
233 |
| - |
234 |
| - return result; |
235 |
| -} |
0 commit comments