mirror of
https://github.com/vercel/commerce.git
synced 2025-04-27 13:27:50 +00:00
add compareAtPriceRange
This commit is contained in:
parent
57016c1582
commit
8efe945118
@ -14,6 +14,16 @@ const productFragment = /* GraphQL */ `
|
||||
name
|
||||
values
|
||||
}
|
||||
compareAtPriceRange {
|
||||
maxVariantPrice {
|
||||
amount
|
||||
currencyCode
|
||||
}
|
||||
minVariantPrice {
|
||||
amount
|
||||
currencyCode
|
||||
}
|
||||
}
|
||||
priceRange {
|
||||
maxVariantPrice {
|
||||
amount
|
||||
|
@ -123,6 +123,10 @@ export type ShopifyProduct = {
|
||||
description: string;
|
||||
descriptionHtml: string;
|
||||
options: ProductOption[];
|
||||
compareAtPriceRange: {
|
||||
maxVariantPrice: Money;
|
||||
minVariantPrice: Money;
|
||||
};
|
||||
priceRange: {
|
||||
maxVariantPrice: Money;
|
||||
minVariantPrice: Money;
|
||||
|
Loading…
x
Reference in New Issue
Block a user