mirror of
https://github.com/vercel/commerce.git
synced 2025-06-04 23:36:58 +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
|
/node_modules
|
||||||
/.pnp
|
/.pnp
|
||||||
.pnp.js
|
.pnp.js
|
||||||
|
yarn.lock
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
# testing
|
# testing
|
||||||
/coverage
|
/coverage
|
||||||
|
@ -14,6 +14,16 @@ const productFragment = /* GraphQL */ `
|
|||||||
name
|
name
|
||||||
values
|
values
|
||||||
}
|
}
|
||||||
|
compareAtPriceRange {
|
||||||
|
maxVariantPrice {
|
||||||
|
amount
|
||||||
|
currencyCode
|
||||||
|
}
|
||||||
|
minVariantPrice {
|
||||||
|
amount
|
||||||
|
currencyCode
|
||||||
|
}
|
||||||
|
}
|
||||||
priceRange {
|
priceRange {
|
||||||
maxVariantPrice {
|
maxVariantPrice {
|
||||||
amount
|
amount
|
||||||
|
@ -123,6 +123,10 @@ export type ShopifyProduct = {
|
|||||||
description: string;
|
description: string;
|
||||||
descriptionHtml: string;
|
descriptionHtml: string;
|
||||||
options: ProductOption[];
|
options: ProductOption[];
|
||||||
|
compareAtPriceRange: {
|
||||||
|
maxVariantPrice: Money;
|
||||||
|
minVariantPrice: Money;
|
||||||
|
};
|
||||||
priceRange: {
|
priceRange: {
|
||||||
maxVariantPrice: Money;
|
maxVariantPrice: Money;
|
||||||
minVariantPrice: Money;
|
minVariantPrice: Money;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user