How to return all locales for an entry via GraphQL?

Ah I found in in the schema!!

# Write your query or mutation here
query FetchProducts
{
	products
  {
    data
    {
      id
      attributes
      {
        slug
        localizations
        {
          data
          {
            id
            attributes
            {
              slug
            }
          }
        }
      }
    }
  }
}