mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
12 lines
356 B
TypeScript
12 lines
356 B
TypeScript
import { cartQueryFragment } from './get-cart-query'
|
|
|
|
const accountCartByAccountIdQuery = `
|
|
query accountCartByAccountIdQuery($accountId: ID!, $shopId: ID!, $itemsAfterCursor: ConnectionCursor) {
|
|
cart: accountCartByAccountId(accountId: $accountId, shopId: $shopId) {
|
|
${cartQueryFragment}
|
|
}
|
|
}
|
|
`
|
|
|
|
export default accountCartByAccountIdQuery
|