OBJECT

Language

link GraphQL Schema definition

1type Language {
2id: Int!
3
4# Arguments
5# locale: (self-explanatory)
6name(locale: String): String!
7
8code: String!
9
10# ISO-639 code
11languageCode: String
12
13# ISO-639 description
14languageName: String
15
16# ISO-3166 code
17countryCode: String
18
19# Enables the language to be worked with
20isAvailableForTranslation: Boolean
21
22isActive: Boolean
23
24# Required permission: Country:read
25#
26# Limit is optional
27#
28# Arguments
29# where: (self-explanatory)
30# sort: (self-explanatory)
31# limit: (self-explanatory)
32# page: (self-explanatory)
33countries(where: CountryFilter, sort: [CountrySort!] = [name_ASC], limit: Int, page: Int): [Country!]!
34
35}