mirror of
https://github.com/vercel/commerce.git
synced 2025-05-13 13:17:51 +00:00
26 lines
343 B
TypeScript
26 lines
343 B
TypeScript
const lineItemFragment = /* GraphQL */ `
|
|
fragment LineItem on LineItem {
|
|
title
|
|
image {
|
|
altText
|
|
height
|
|
url
|
|
width
|
|
}
|
|
price {
|
|
amount
|
|
currencyCode
|
|
}
|
|
quantity
|
|
sku
|
|
totalPrice {
|
|
amount
|
|
currencyCode
|
|
}
|
|
variantTitle
|
|
id
|
|
}
|
|
`;
|
|
|
|
export default lineItemFragment;
|