Skip to content

Commit f61def6

Browse files
PWA-1611: Add operation status to DeleteNegotiableQuotesOutput
* Updated schema descriptions Co-authored-by: Kevin Harper <keharper@users.noreply.github.com>
1 parent 0ce5957 commit f61def6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/GraphQl/etc/schema.graphqls

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,12 +290,12 @@ enum BatchMutationStatus {
290290
}
291291

292292
interface ErrorInterface @typeResolver(class: "\\Magento\\GraphQl\\Model\\Mutation\\Resolver\\ErrorTypeResolver") {
293-
message: String!
293+
message: String! @doc(description: "The returned error message.")
294294
}
295295

296-
type NoSuchEntityUidError implements ErrorInterface {
297-
uid: ID!
296+
type NoSuchEntityUidError implements ErrorInterface @doc(description: "Contains an error message when an invalid UID was specified.") {
297+
uid: ID! @doc(description: "The specified invalid unique ID of an object.")
298298
}
299299

300-
type InternalError implements ErrorInterface {
300+
type InternalError implements ErrorInterface @doc(description: "Contains an error message when an internal error occurred.") {
301301
}

0 commit comments

Comments
 (0)