import productFragment from './product';
const cartFragment = /* GraphQL */ `
fragment cart on Cart {
id
checkoutUrl
cost {
subtotalAmount {
amount
currencyCode
}
totalAmount {
totalTaxAmount {
lines(first: 100) {
edges {
node {
quantity
merchandise {
... on ProductVariant {
title
selectedOptions {
name
value
product {
...product
totalQuantity
${productFragment}
`;
export default cartFragment;