Skip to content

Commit 3e46408

Browse files
committed
PWA-1611: Add operation status to DeleteNegotiableQuotesOutput
* Applied schema file changes
1 parent 262abfe commit 3e46408

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,3 +282,20 @@ input EnteredOptionInput @doc(description: "Defines a customer-entered option.")
282282
uid: ID! @doc(description: "The unique ID for a `CustomizableOptionInterface` object, such as a `CustomizableFieldOption`, `CustomizableFileOption`, or `CustomizableAreaOption` object.")
283283
value: String! @doc(description: "Text the customer entered.")
284284
}
285+
286+
enum BatchMutationStatus {
287+
SUCCESS
288+
FAILURE
289+
MIXED_RESULTS
290+
}
291+
292+
interface ErrorInterface {
293+
message: String!
294+
}
295+
296+
type NoSuchEntityUidError implements ErrorInterface {
297+
uid: ID!
298+
}
299+
300+
type InternalError implements ErrorInterface {
301+
}

0 commit comments

Comments
 (0)