@@ -50,6 +50,8 @@ export interface FactoriesSchemaVisitorRawConfig
50
50
// the following option does the same thing as namespacedImportName
51
51
// but it is injected automatically while this one is provided by the user
52
52
importTypesNamespace ?: string ;
53
+
54
+ inputMaybeValueDefault ?: string ;
53
55
}
54
56
55
57
export interface FactoriesSchemaVisitorParsedConfig
@@ -59,6 +61,7 @@ export interface FactoriesSchemaVisitorParsedConfig
59
61
namespacedImportName : string | null ;
60
62
typesPath ?: string ;
61
63
importTypesNamespace ?: string ;
64
+ inputMaybeValueDefault : string | "null" ;
62
65
}
63
66
64
67
interface VisitedTypeNode {
@@ -117,6 +120,10 @@ export class FactoriesSchemaVisitor extends FactoriesBaseVisitor<
117
120
config . importTypesNamespace ,
118
121
undefined
119
122
) ,
123
+ inputMaybeValueDefault : getConfigValue (
124
+ config . inputMaybeValueDefault ,
125
+ "null"
126
+ ) ,
120
127
} as FactoriesSchemaVisitorParsedConfig ;
121
128
122
129
if ( parsedConfig . typesPath && parsedConfig . namespacedImportName == null ) {
@@ -209,11 +216,16 @@ export class FactoriesSchemaVisitor extends FactoriesBaseVisitor<
209
216
}
210
217
211
218
protected convertField (
212
- node : UnvisitedFieldDefinitionNode | UnvisitedInputValueDefinitionNode
219
+ node : UnvisitedFieldDefinitionNode | UnvisitedInputValueDefinitionNode ,
220
+ nullableDefaultValue : string
213
221
) : string {
214
222
const { defaultValue, isNullable } = node . type ;
215
223
return indent (
216
- indent ( `${ node . name . value } : ${ isNullable ? "null" : defaultValue } ,` )
224
+ indent (
225
+ `${ node . name . value } : ${
226
+ isNullable ? nullableDefaultValue : defaultValue
227
+ } ,`
228
+ )
217
229
) ;
218
230
}
219
231
@@ -283,15 +295,15 @@ export class FactoriesSchemaVisitor extends FactoriesBaseVisitor<
283
295
}
284
296
285
297
FieldDefinition ( node : UnvisitedFieldDefinitionNode ) : string {
286
- return this . convertField ( node ) ;
298
+ return this . convertField ( node , "null" ) ;
287
299
}
288
300
289
301
InputObjectTypeDefinition ( node : InputObjectTypeDefinitionNode ) : string {
290
302
return this . convertObjectType ( node ) ;
291
303
}
292
304
293
305
InputValueDefinition ( node : UnvisitedInputValueDefinitionNode ) : string {
294
- return this . convertField ( node ) ;
306
+ return this . convertField ( node , this . config . inputMaybeValueDefault ) ;
295
307
}
296
308
297
309
ObjectTypeDefinition ( node : ObjectTypeDefinitionNode ) : string | undefined {
0 commit comments