Files
sent-shop/lib/shopify/queries/cart.ts
2026-01-19 20:21:14 +01:00

11 lines
192 B
TypeScript

import cartFragment from '../fragments/cart';
export const getCartQuery = /* GraphQL */ `
query getCart($cartId: ID!) {
cart(id: $cartId) {
...cart
}
}
${cartFragment}
`;