Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce @disableErrorPropagation #1145

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
34 changes: 33 additions & 1 deletion spec/Section 3 -- Type System.md
Original file line number Diff line number Diff line change
Expand Up @@ -1818,7 +1818,9 @@ must be raised.
Note: When a _field error_ is raised on a non-null value, the error propagates
to the parent field. For more information on this process, see
[Errors and Non-Null Fields](#sec-Executing-Selection-Sets.Errors-and-Non-Null-Fields)
within the Execution section.
within the Execution section. This error propagation behavior can be modified using the
`@disableErrorPropagation` directive, which prevents errors from propagating upward through
parent fields. See [`@disableErrorPropagation`](#sec-disableErrorPropagation) for more details.

**Input Coercion**

Expand Down Expand Up @@ -1944,6 +1946,8 @@ by a validator, executor, or client tool such as a code generator.

GraphQL implementations should provide the `@skip` and `@include` directives.

GraphQL implementations should provide the `@disableErrorPropagation` directive to allow clients to control error propagation behavior for specific operations.

GraphQL implementations that support the type system definition language must
provide the `@deprecated` directive if representing deprecated portions of the
schema.
Expand Down Expand Up @@ -2164,3 +2168,31 @@ to the relevant IETF specification.
```graphql example
scalar UUID @specifiedBy(url: "https://tools.ietf.org/html/rfc4122")
```

### @disableErrorPropagation

```graphql
directive @disableErrorPropagation on QUERY | MUTATION | SUBSCRIPTION
```

The `@disableErrorPropagation` _built-in directive_ can be used to disable error propagation during execution of operations. When this directive is applied to an operation, errors in non-null fields will not propagate to their parent fields. Instead, the error is reported in the response's `errors` list while the field simply returns `null`, even if it's a non-null field.

Without this directive, GraphQL follows the default error propagation behavior: when a field error occurs on a non-null field, the error propagates to the parent field, potentially nullifying the entire response if the parent field is also non-null.

In this example, error propagation is disabled for the query:

```graphql example
query getUser @disableErrorPropagation {
user {
id
name
email
}
}
```

If the `email` field (which may be defined as `String!` in the schema) throws an error, it would return `null` instead of causing the entire `user` object to become `null`.

This directive is particularly useful for clients that want more granular control over error handling and prefer partial data with errors rather than having entire objects or responses nullified due to a single field error.

Note: The `@disableErrorPropagation` directive only affects error propagation during execution. It does not affect how errors are validated or included in the response's `errors` list.
4 changes: 4 additions & 0 deletions spec/Section 6 -- Execution.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,8 @@ either resolving to {null} if allowed or further propagated to a parent field.
If this occurs, any sibling fields which have not yet executed or have not yet
yielded a value may be cancelled to avoid unnecessary work.

This default error propagation behavior can be modified by using the `@disableErrorPropagation` directive on an operation. If this directive is present, field errors in non-null fields will not propagate to their parent fields. Instead, the field that experienced the error will return `null` (even if it's a non-null field) and the error will be added to the response's `errors` list, but parent fields will continue to be resolved normally. This allows clients to receive partial data with localized errors rather than having errors propagate and potentially nullify large portions of the response.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might want to modify the existing text instead of adding a new paragraph. Read in isolation, the paragraph above become misleading.

Maybe just:

If during {ExecuteSelectionSet()} a field with a non-null {fieldType} raises a
_field error_ **and the operation does not define `@disableErrorPropagation`** 
then that error must propagate to this entire selection set, ...


Note: See [Handling Field Errors](#sec-Handling-Field-Errors) for more about
this behavior.

Expand Down Expand Up @@ -835,3 +837,5 @@ upwards.
If all fields from the root of the request to the source of the field error
return `Non-Null` types, then the {"data"} entry in the response should be
{null}.

Note: The error propagation behavior described above can be modified by using the `@disableErrorPropagation` directive on an operation. See [Errors and Non-Null Fields](#sec-Executing-Selection-Sets.Errors-and-Non-Null-Fields) for details.
Loading