From 446f61c5b49711019d6aa56a3eefad30e520c757 Mon Sep 17 00:00:00 2001 From: Michael Bromley Date: Thu, 5 Oct 2023 14:24:28 +0200 Subject: [PATCH] fix(core): Use correct Money type on ProductVariantPrice.price field --- .../core/src/api/schema/admin-api/product-admin.type.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/api/schema/admin-api/product-admin.type.graphql b/packages/core/src/api/schema/admin-api/product-admin.type.graphql index 809798de88..d0a1ce6de2 100644 --- a/packages/core/src/api/schema/admin-api/product-admin.type.graphql +++ b/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 {