Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,20 @@ target's Settings "Breaking Changes" tab. Enabling this will cause dangerous cha
[Breaking change approval](/docs/schema-registry#approve-breaking-schema-changes) in order to
publish.

The full list of dangerous changes includes:

- **INPUT_FIELD_DEFAULT_VALUE_CHANGED**
- **INPUT_FIELD_ADDED**, if added to an existing type, and the added input field is nullable and has a default. If the field is required and no default is set, then this is breaking.
- **OBJECT_TYPE_INTERFACE_ADDED**, if added to an existing type
- **UNION_MEMBER_ADDED**, if added to an existing type
- **FIELD_ARGUMENT_ADDED**, if added to an existing type. This can also be a breaking change if the argument required, and a default value is not set.
- **FIELD_ARGUMENT_DEFAULT_CHANGED**
- **ENUM_VALUE_ADDED**, if added to an existing type
- **DIRECTIVE_USAGE\_<TYPE>\_ADDED**, if added to an existing type and is not a built-in directive (`@deprecated` or `@oneOf`).
- **DIRECTIVE_USAGE\_<TYPE>\_REMOVED**, if not a built-in directive (`@deprecated` or `@oneOf`).
- **DIRECTIVE_ARGUMENT_DEFAULT_VALUE_CHANGED**
- **DIRECTIVE_REPEATABLE_REMOVED**

### Schema Extensions

Hive allows you to have a pre-defined GraphQL schema that is automatically merged with your
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ about their schema.

---

[For more information see the Target Management docs](/docs/management/targets#dangerous-changes).
[For more information see the Target Management docs](/docs/schema-registry/management/targets#dangerous-changes).
Loading