mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
import { cartDetailsFragment } from '../fragments/cart-details-fragment'
|
|
|
|
export const getCartQuery = /* GraphQL */ `
|
|
query getCart($cartId: ID!) {
|
|
cart(id: $cartId) {
|
|
...cartDetails
|
|
}
|
|
}
|
|
${cartDetailsFragment}
|
|
`
|