OBJECT
Language
link GraphQL Schema definition
1 type Language { 2 : Int! 3 4 # Arguments 5 # locale: (self-explanatory) 6 (: String): String! 7 8 : String! 9 10 # ISO-639 code 11 : String 12 13 # ISO-639 description 14 : String 15 16 # ISO-3166 code 17 : String 18 19 # Enables the language to be worked with 20 : Boolean 21 22 : 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) 33 (: CountryFilter, : [CountrySort!] = [name_ASC], : Int, : Int): [Country!]! 34 35 }