Skip to content

Commit 2c00de1

Browse files
authored
LYNX-250: order_cancellation_enabled config cannot be null [FIXED] (#154)
1 parent ff73e89 commit 2c00de1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright © Magento, Inc. All rights reserved.
22
# See COPYING.txt for license details.
33
type StoreConfig {
4-
order_cancellation_enabled: Boolean @doc(description: "Indicates whether orders can be cancelled by customers or not.")
4+
order_cancellation_enabled: Boolean! @doc(description: "Indicates whether orders can be cancelled by customers or not.")
55
order_cancellation_reasons: [CancellationReason!]! @resolver(class: "Magento\\OrderCancellationGraphQl\\Model\\Resolver\\CancellationReasons") @doc(description: "An array containing available cancellation reasons.")
66
}
77

0 commit comments

Comments
 (0)