Releases: scandipwa/directory-graphql
Releases · scandipwa/directory-graphql
Patch: Support for Magento 2.4.4
What's inside
- Support for Magento 2.4.4. Related to scandipwa/scandipwa#4122
That's all there is to it :)
Fix autoload files
This release fixes issue with incorrect autoload files path in composer.json
Support for countries to require a region
What's inside
- Support for countries to require a region
Support for countries to require a region
Following fields added to schema:
type Query {
countries: [Country] @resolver(class: "ScandiPWA\\DirectoryGraphQl\\Model\\Resolver\\Countries") @doc(description: "The countries query provides information for all countries.") @cache(cacheable: false)
}
type Country {
id: String
two_letter_abbreviation: String
three_letter_abbreviation: String
full_name_locale: String
full_name_english: String
available_regions: [Region]
is_state_required: Boolean
}