diff --git a/spec/Section 4 -- Composition.md b/spec/Section 4 -- Composition.md index 3730e5a..8c24590 100644 --- a/spec/Section 4 -- Composition.md +++ b/spec/Section 4 -- Composition.md @@ -3189,11 +3189,11 @@ input BookFilter { In this invalid case, `title` is mandatory in Schema A but not defined in `Schema B`, causing inconsistency in required fields across schemas. -#### Output Field Argument Types Mergeable +#### Field Argument Types Mergeable **Error Code** -`OUTPUT_FIELD_ARGUMENT_TYPES_NOT_MERGEABLE` +`FIELD_ARGUMENT_TYPES_NOT_MERGEABLE` **Severity** @@ -3247,8 +3247,8 @@ them successfully. _Incompatible Types_ If argument types differ on the named type itself - for example, one uses -`String` while the other uses `DateTime` - this causes an -`OUTPUT_FIELD_ARGUMENT_TYPES_NOT_MERGEABLE` error. Similarly, if one schema has +`String` while the other uses `DateTime` - this causes a +`FIELD_ARGUMENT_TYPES_NOT_MERGEABLE` error. Similarly, if one schema has `[String]` but another has `[DateTime]`, they are incompatible. ```graphql example