Product
Strawberry Shake
Version
15.1.16
Link to minimal reproduction
https://github.com/andreashellquist/strawberryshake-hc0065-repro
Steps to reproduce
Clone the repo
Run dotnet build in src/StrawberryShakeHC0065/
Build fails with HC0065
The project has two schema files (schema-part1.graphql and schema-part2.graphql) that both define input PageLinkComponentUpsertInput. This simulates CMS schemas (Hygraph/Contentful) where the CLI exports overlapping types across multiple files.
What is expected?
When multiple schema files contain identical type definitions, the code generator should deduplicate them and succeed. This is the standard scenario when working with CMS-exported schemas.
What is actually happening?
Build fails with:
error HC0065: The name PageLinkComponentUpsertInput was already registered by another type.
HotChocolate.SchemaException: For more details look at the Errors property.
- The name
PageLinkComponentUpsertInput was already registered by another type.
(HotChocolate.Types.InputObjectType)
Relevant log output
src/StrawberryShakeHC0065/StrawberryShakeHC0065.csproj : error HC0065: The name `PageLinkComponentUpsertInput` was already registered by another type.
Additional context
- Root cause: SchemaHelper.Load calls builder.AddDocument(document) independently for each non-extension schema file. When files have overlapping type definitions, the HotChocolate type system registers the same type name twice.
- Workaround: Manually consolidate all types into a single .graphql file (impractical for large CMS schemas with hundreds of types).
- Affected versions: 14.x (confirmed on 14.4.0)
- The issue also affects files containing both extension nodes and regular type definitions — regular types get silently dropped.
Product
Strawberry Shake
Version
15.1.16
Link to minimal reproduction
https://github.com/andreashellquist/strawberryshake-hc0065-repro
Steps to reproduce
Clone the repo
Run dotnet build in src/StrawberryShakeHC0065/
Build fails with HC0065
The project has two schema files (schema-part1.graphql and schema-part2.graphql) that both define input PageLinkComponentUpsertInput. This simulates CMS schemas (Hygraph/Contentful) where the CLI exports overlapping types across multiple files.
What is expected?
When multiple schema files contain identical type definitions, the code generator should deduplicate them and succeed. This is the standard scenario when working with CMS-exported schemas.
What is actually happening?
Build fails with:
error HC0065: The name
PageLinkComponentUpsertInputwas already registered by another type.HotChocolate.SchemaException: For more details look at the
Errorsproperty.PageLinkComponentUpsertInputwas already registered by another type.(HotChocolate.Types.InputObjectType)
Relevant log output
Additional context