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} `;