Hi, we’re having issues getting the correct translations for our store when viewing a product. The query looks something like this:
const PRODUCT_QUERY = #graphql query Product( $country: CountryCode $handle: String! $language: LanguageCode $selectedOptions: [SelectedOptionInput!]! ) @inContext(country: $country, language: $language) { product(handle: $handle) { ...Product media(first: 6) { ... }
Even though the language is hardcoded to English, it doesn’t fetch the english translates values in Shopify. Even if we hardcode the language variables in the query it doesn’t apply.
Any help is appreciated!