Skip to content

Commit 63d2866

Browse files
committed
PWA-1611: Add operation status to DeleteNegotiableQuotesOutput
* Created GraphQL mutation BatchResult class * Added result_status to closeNegotiableQuotes response output
1 parent 3e46408 commit 63d2866

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
/*
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
declare(strict_types=1);
7+
8+
namespace Magento\GraphQl\Model\Mutation;
9+
10+
class BatchResult
11+
{
12+
const STATUS_SUCCESS = 'SUCCESS';
13+
14+
const STATUS_FAILURE = 'FAILURE';
15+
16+
const STATUS_MIXED = 'MIXED_RESULTS';
17+
}

0 commit comments

Comments
 (0)