| 12345678910111213141516171819202122232425 | # ===============================================# LOCALIZATION# ===============================================extend type Query {  locales: [LocalizationLocale]  localeStrings(locale: String!): JSON}# -----------------------------------------------# TYPES# -----------------------------------------------type LocalizationLocale {  completeness: Int  code: String  createdAt: Date  isRTL: Boolean  language: String  name: String  nativeName: String  region: String  script: String  updatedAt: Date}
 |