Localisation

By default, all content is retrieved in the default locale for your space.

If you have defined multiple locales, you can retrieve content in an alternative locale using the locale argument.

query {
  bookItem(id: "1234", locale: de_DE) {
    title
  }
}

In the event that you would like to retrieve content in multiple locales, you can use multiple root queries.

query {
  bookEN: bookItem(id: "1234", locale: en_GB) {
    title
  }

  bookDE: bookItem(id: "1234", locale: de_DE) {
    title
  }
}
Integrates with your favourite tools and frameworks

© 2022 Status200 Ltd.