# countries Get all available countries for the store ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { countries { # Fields from Country type } } ``` ## Arguments This query does not accept any arguments. ## Return Type Returns a list of [`Country`](/reference/storefront/v1/objects/country) objects containing country information available for the store. ## Example ```graphql { countries { code name continent } } ``` ## Related Types - [`Country`](/reference/storefront/v1/objects/country)