Added usePrice to products in the landing

This commit is contained in:
Luis Alvarez
2020-10-25 17:52:52 -05:00
parent 7d9dad9b0d
commit af9dfe79d2
3 changed files with 17 additions and 3 deletions

View File

@@ -51,6 +51,10 @@ export const productInfoFragment = /* GraphQL */ `
value
currencyCode
}
retailPrice {
value
currencyCode
}
}
images {
edges {

View File

@@ -1739,6 +1739,9 @@ export type ProductInfoFragment = { __typename?: 'Product' } & Pick<
salePrice?: Maybe<
{ __typename?: 'Money' } & Pick<Money, 'value' | 'currencyCode'>
>
retailPrice?: Maybe<
{ __typename?: 'Money' } & Pick<Money, 'value' | 'currencyCode'>
>
}
>
images: { __typename?: 'ImageConnection' } & {