Locale data for Content-Type not retrieving images

I’m trying to retrieve a page data for different locales (default and another one), on the default locale I’m getting the desired fields but on the localizations array I’m not able to get the Image object. this is the query I’m using (Strapi v4.1.11, Gastby 4.13.0):

strapiIndexPage {
    hasButton
    title
    description
    Image {
      url
    }
    localizations {
      data {
        attributes {
          locale
          title
          description
          hasButton
        }
      }
    }
  }

when I try it on Postman it works:

query {
    attractPage {
        data {
            attributes {
            hasButton
            title
            description
            Image {data {attributes {url}}}
            localizations {
                data {
                attributes {
                    locale
                    hasButton
                    title
                    description
                    Image {data {attributes {url}}}
                }
                }
            }
            }
        }
    }
}