# Get locales list from GraphQL

[date: 2021-10-29T13:38:27.391+02:00]

You can now query the list of existing locales directly from GraphQL:

```graphql
query Locales {
  _site {
    locales
  }
}
```

And you get back the array of the locales:

```json
{
  "data": {
    "_site": {
      "locales": [
        "en",
        "it",
        "ar"
      ]
    }
  }
}
```