localization.graphql 524 B

12345678910111213141516171819202122232425
  1. # ===============================================
  2. # LOCALIZATION
  3. # ===============================================
  4. extend type Query {
  5. locales: [LocalizationLocale]
  6. localeStrings(locale: String!): JSON
  7. }
  8. # -----------------------------------------------
  9. # TYPES
  10. # -----------------------------------------------
  11. type LocalizationLocale {
  12. completeness: Int
  13. code: String
  14. createdAt: Date
  15. isRTL: Boolean
  16. language: String
  17. name: String
  18. nativeName: String
  19. region: String
  20. script: String
  21. updatedAt: Date
  22. }