Skip to content

Releases: scandipwa/directory-graphql

Patch: Support for Magento 2.4.4

11 Jun 00:22
e80d0be
Compare
Choose a tag to compare

What's inside

That's all there is to it :)

Fix autoload files

08 Mar 02:08
3e68e0a
Compare
Choose a tag to compare

This release fixes issue with incorrect autoload files path in composer.json

Support for countries to require a region

05 Mar 09:41
b19780d
Compare
Choose a tag to compare

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
}