After upgrading to API v2025-01 I started getting deprecation warnings for market enabled and regions fields. Warnings referring to non existing fields (status and conditions.regionConditions) so it’s not possible to fix them.
Documentation doesn’t mention deprecation of enabled field but does mentions deprecation of regions without replacement. I guess it’s either a mistake or premature deprecation.
Example query:
{
markets(first: 50) {
nodes {
id
name
enabled
regions(first: 50) {
nodes {
... on MarketRegionCountry {
code
}
}
}
}
}
}