_locale works OOTB for language — what's the recommended way to handle market/country in AEM GraphQL?
We're delivering Content Fragments headlessly via the AEM as a Cloud Service GraphQL API for a multi-market site. We already use `_locale` to fetch the right language version of our fragments, and it works great OOTB. What I'm trying to figure out: Is there an equivalent OOTB system parameter for country or market the way `_locale` exists for language? Something like a _country OR / _market argument I could pass into the query?
Our content structure looks like “/content/dam/<brand>/us/en/...”, “/content/dam/<brand>/uk/en/...”, etc. I know I could filter on `_path` with `STARTS_WITH`, but for this use case we'd prefer not to rely on path-based filtering.
Question:
1. Does AEM GraphQL expose any OOTB country/market parameter, or is “ _locale” the only geo-related system parameter?
2. If there's nothing OOTB, what's the recommended way to model market so it filters cleanly in GraphQL?