Skip to content

Commit aad36b0

Browse files
authored
GraphQLInputObjectTypeConfig naming consistency
1 parent 5fb3500 commit aad36b0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

site/graphql-js/APIReference-TypeSystem.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)