File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,22 @@ accessing this HTTP endpoint _implicitly_ defines the GraphQL schema to use.
172
172
> When using GraphQL over HTTP, it's common to encode the GraphQL request as
173
173
> JSON.
174
174
175
+ For more details, refer to [the specification definition](https://spec.graphql.org/draft/#request).
176
+
177
+ ### error
178
+
179
+ **Definition**: An error is an anomalous condition that breaks the execution of an algorithm.
180
+
181
+ Errors are raised during the execution of an algorithm. Callers of the algorithm may handle errors and recover from the error.
182
+
183
+ Note: Errors can be thought as exceptions in languages that support them.
184
+
185
+ ### (GraphQL) field error
186
+
187
+ **Definition**: A field error is an error raised during the execution of a particular field which results in partial response data.
188
+
189
+ For more details, refer to [the specification definition](https://spec.graphql.org/draft/#field-error).
190
+
175
191
### (GraphQL) request error
176
192
177
193
**Definition**: an error which occurs whilst preparing a GraphQL request for
@@ -185,6 +201,8 @@ Example:
185
201
> parse grammar or validation error in the requested document, an inability to
186
202
> determine which operation to execute, or invalid input values for variables.
187
203
204
+ For more details, refer to [the specification definition](https://spec.graphql.org/draft/#request-error).
205
+
188
206
### (GraphQL) service
189
207
190
208
**Definition**: a software capable of executing a GraphQL request and returning
You can’t perform that action at this time.
0 commit comments