# Fetch all the language values for a field in a single call

[date: 2018-08-28T18:30:00.000+02:00]

As requested on Slack, we just introduced a new way to fetch content on our GraphQL Content Delivery API.

If you want to get the value of a field in every language, you can now use the `_all<FieldName>Locales` field:

```plaintext
query {
  allBlogPosts {
    _allTitleLocales {
      locale
      value
    }
  }
}
```