mirror of
https://github.com/vercel/commerce.git
synced 2025-04-28 05:47:50 +00:00
17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
const priceFragment = /* GraphQL */ `
|
|
fragment Price on PriceType {
|
|
isDiscounted
|
|
regularPriceIncVatFormatted
|
|
sellingPriceIncVatFormatted
|
|
regularPriceExVatFormatted
|
|
sellingPriceExVatFormatted
|
|
sellingPriceIncVat
|
|
sellingPriceExVat
|
|
regularPriceIncVat
|
|
regularPriceExVat
|
|
vat
|
|
discountPercentage
|
|
}
|
|
`;
|
|
export default priceFragment;
|