You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/pages/learn/schema-design.mdx
+25
Original file line number
Diff line number
Diff line change
@@ -35,3 +35,28 @@ A field error is typically the fault of a GraphQL service.
35
35
Clients wanting to display partial data should opt out of error propagation using `@experimental_disableErrorPropagation` and parse the `errors` section of the response. This ensures the server returns as much data as is available.
36
36
37
37
Because they are typically not cached and harder to process that regular data, field errors in GraphQL work best are exceptional and transient.
38
+
39
+
## Documentation
40
+
41
+
GraphQL has built-in support for documentation. Every type and field in your schema can be described to provide context to your developers about how to use them.
0 commit comments