mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
524 B
26 lines
524 B
# ===============================================
|
|
# 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
|
|
}
|