File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -457,33 +457,33 @@ class GraphQLInputObjectType {
457
457
constructor (config : GraphQLInputObjectTypeConfig )
458
458
}
459
459
460
- type InputObjectConfig = {
460
+ type GraphQLInputObjectConfig = {
461
461
name: string;
462
- fields: InputObjectConfigFieldMapThunk | InputObjectConfigFieldMap ;
462
+ fields: GraphQLInputObjectConfigFieldMapThunk | GraphQLInputObjectConfigFieldMap ;
463
463
description?: ? string;
464
464
}
465
465
466
- type InputObjectConfigFieldMapThunk = () => InputObjectConfigFieldMap ;
466
+ type GraphQLInputObjectConfigFieldMapThunk = () => GraphQLInputObjectConfigFieldMap ;
467
467
468
- type InputObjectFieldConfig = {
468
+ type GraphQLInputObjectFieldConfig = {
469
469
type: GraphQLInputType;
470
470
defaultValue?: any;
471
471
description?: ? string;
472
472
}
473
473
474
- type InputObjectConfigFieldMap = {
475
- [fieldName: string]: InputObjectFieldConfig ;
474
+ type GraphQLInputObjectConfigFieldMap = {
475
+ [fieldName: string]: GraphQLInputObjectFieldConfig ;
476
476
};
477
477
478
- type InputObjectField = {
478
+ type GraphQLInputObjectField = {
479
479
name: string;
480
480
type: GraphQLInputType;
481
481
defaultValue?: any;
482
482
description?: ? string;
483
483
}
484
484
485
- type InputObjectFieldMap = {
486
- [fieldName: string]: InputObjectField ;
485
+ type GraphQLInputObjectFieldMap = {
486
+ [fieldName: string]: GraphQLInputObjectField ;
487
487
};
488
488
` ` `
489
489
You can’t perform that action at this time.
0 commit comments