What's Changed
- Validate and rename types with the same name with system keywords such as
query
,mutation
, andsubscription
. The engine will reject these names when building metadata. - Validate and fix duplicated names. This will introduce breaking changes in the schema and metadata.
- All anonymous object types will have the
Object
suffix. - All enum scalars have the
Enum
suffix. - If the operation name or type name, the generator will add the number suffix and increase it until the name is no longer conflicted.
- All anonymous object types will have the
feat
: response transformer allows you to transform the default body of your HTTP API response by configuring a response transform template. See response_transform.mdfeat
: Add a new settingruntime.enableRawRequest: boolean
to allow turning on or off thesendHttpRequest
mutation. The default value istrue
.
Full Changelog: v0.9.1...v0.10.0