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/WeeeGraphQl/etc/schema.graphqls
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,15 @@
2
2
# See COPYING.txt for license details.
3
3
4
4
enumPriceAdjustmentCodesEnum {
5
-
WEE
6
-
WEETAX
5
+
WEEE
6
+
WEEETAX
7
+
}
8
+
9
+
typeProductPrice {
10
+
fixed_product_taxes: [FixedProductTax] @doc(description: "The multiple FPTs that can be applied to a product price.") @resolver(class: "Magento\\WeeeGraphQl\\Model\\Resolver\\FptResolver")
11
+
}
12
+
13
+
typeFixedProductTax@doc(description: "A single FPT that can be applied to a product price.") {
14
+
amount: Money@doc(description: "Amount of the FPT as a money object.")
15
+
label: String@doc(description: "The label assigned to the FPT to be displayed on the frontend.")
0 commit comments