Partners

Product Updates

DatoCMS changelog for new features and general improvements
Content Delivery API
Fetch all the language values for a field in a single call
August 28th, 2018

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:

query {
allBlogPosts {
_allTitleLocales {
locale
value
}
}
}