Kristian Arvidsson db63db1331
feat/add-geins-as-provider (#1)
* feat: add geins as provider
2024-11-28 11:24:28 +01:00

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;