1
0
mirror of https://github.com/vercel/commerce.git synced 2025-08-13 20:31:23 +00:00
Files
commerce/lib/shopify/queries/cart.ts
2023-09-01 02:32:21 -07:00

11 lines
192 B
TypeScript

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