ソースを参照

fix(core): Use correct Money type on ProductVariantPrice.price field

Michael Bromley 2 年 前
コミット
446f61c5b4

+ 1 - 1
packages/core/src/api/schema/admin-api/product-admin.type.graphql

@@ -5,7 +5,7 @@ type Product implements Node {
 
 type ProductVariantPrice {
     currencyCode: CurrencyCode!
-    price: Int!
+    price: Money!
 }
 
 type ProductVariant implements Node {