You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/code/Magento/QuoteGraphQl/etc/schema.graphqls
+14-7Lines changed: 14 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -508,13 +508,20 @@ enum PlaceOrderErrorCodes {
508
508
}
509
509
510
510
typeStoreConfig {
511
-
is_guest_checkout_enabled: Boolean@doc(description: "Extended Config Data - checkout/options/guest_checkout")
512
-
is_one_page_checkout_enabled: Boolean@doc(description: "Extended Config Data - checkout/options/onepage_checkout_enabled")
513
-
max_items_in_order_summary: Int@doc(description: "Extended Config Data - checkout/options/max_items_display_count")
514
-
cart_summary_display_quantity: Int@doc(description: "Extended Config Data - checkout/cart_link/use_qty")
515
-
minicart_display: Boolean@doc(description: "Extended Config Data - checkout/sidebar/display")
516
-
minicart_max_items: Int@doc(description: "Extended Config Data - checkout/sidebar/count")
517
-
cart_expires_in_days: Int@doc(description: "Extended Config Data - checkout/cart/delete_quote_after")
511
+
is_guest_checkout_enabled: Boolean@doc(description: "checkout/options/guest_checkout: whether the guest checkout is enabled or not.")
512
+
is_one_page_checkout_enabled: Boolean@doc(description: "checkout/options/onepage_checkout_enabled: whether the one page checkout is enabled or not")
513
+
max_items_in_order_summary: Int@doc(description: "checkout/options/max_items_display_count: maximum number of items to display in order summary.")
514
+
cart_summary_display_quantity: Int@doc(description: "checkout/cart_link/use_qty: what to show in the display cart summary, number of items or item quantities.")
515
+
minicart_display: Boolean@doc(description: "checkout/sidebar/display: whether to display the minicart or not.")
516
+
minicart_max_items: Int@doc(description: "checkout/sidebar/count: maximum number of items to show in minicart.")
517
+
cart_expires_in_days: Int@doc(description: "checkout/cart/delete_quote_after: quote lifetime in days.")
518
+
grouped_product_image: ProductImageThumbnail!@doc(description: "checkout/cart/grouped_product_image: which image to use for grouped products.") @resolver(class: "Magento\\QuoteGraphQl\\Model\\Resolver\\StoreConfig")
519
+
configurable_product_image: ProductImageThumbnail!@doc(description: "checkout/cart/configurable_product_image: which image to use for configurable products.") @resolver(class: "Magento\\QuoteGraphQl\\Model\\Resolver\\StoreConfig")
520
+
}
521
+
522
+
enumProductImageThumbnail {
523
+
ITSELF@doc(description: "Use thumbnail of product as image.")
524
+
PARENT@doc(description: "Use thumbnail of product's parent as image.")
0 commit comments