2023-08-31 20:06:14 -07:00

12 lines
293 B
TypeScript

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