mirror of
https://github.com/vercel/commerce.git
synced 2025-06-03 06:46:59 +00:00
Merge 8efe9451185596a3fda502ccdc52fb607802ba1d into fa1306916c652ea5f820d5b400087bece13460fd
This commit is contained in:
commit
1539ec3a23
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,6 +4,8 @@
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
yarn.lock
|
||||
package-lock.json
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
@ -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