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 {
457457 constructor (config : GraphQLInputObjectTypeConfig )
458458}
459459
460- type InputObjectConfig = {
460+ type GraphQLInputObjectConfig = {
461461 name: string;
462- fields: InputObjectConfigFieldMapThunk | InputObjectConfigFieldMap ;
462+ fields: GraphQLInputObjectConfigFieldMapThunk | GraphQLInputObjectConfigFieldMap ;
463463 description?: ? string;
464464}
465465
466- type InputObjectConfigFieldMapThunk = () => InputObjectConfigFieldMap ;
466+ type GraphQLInputObjectConfigFieldMapThunk = () => GraphQLInputObjectConfigFieldMap ;
467467
468- type InputObjectFieldConfig = {
468+ type GraphQLInputObjectFieldConfig = {
469469 type: GraphQLInputType;
470470 defaultValue?: any;
471471 description?: ? string;
472472}
473473
474- type InputObjectConfigFieldMap = {
475- [fieldName: string]: InputObjectFieldConfig ;
474+ type GraphQLInputObjectConfigFieldMap = {
475+ [fieldName: string]: GraphQLInputObjectFieldConfig ;
476476};
477477
478- type InputObjectField = {
478+ type GraphQLInputObjectField = {
479479 name: string;
480480 type: GraphQLInputType;
481481 defaultValue?: any;
482482 description?: ? string;
483483}
484484
485- type InputObjectFieldMap = {
486- [fieldName: string]: InputObjectField ;
485+ type GraphQLInputObjectFieldMap = {
486+ [fieldName: string]: GraphQLInputObjectField ;
487487};
488488` ` `
489489
You can’t perform that action at this time.
0 commit comments