OBJECT
Country
link GraphQL Schema definition
1 type Country implements ObjectWithTranslations { 2 Int! : 3 4 # Arguments 5 # locale: (self-explanatory) 6 String): String! ( : 7 8 # Arguments 9 # type: (self-explanatory) 10 CountryCodeType = ISO2): String! ( : 11 12 String! : 13 14 Boolean! : 15 16 Int! : 17 18 # Required permission: Translation:read 19 # 20 # All elements are always returned 21 # 22 # Arguments 23 # where: (self-explanatory) 24 TranslationFilter): [LanguageTranslation!]! ( : 25 26 # Required permission: Country:read 27 # 28 # Limit is optional 29 # 30 # Arguments 31 # where: (self-explanatory) 32 # sort: (self-explanatory) 33 # limit: (self-explanatory) 34 # page: (self-explanatory) 35 CountryStateFilter, : [CountryStateSort!] = [code_ASC], : Int, : Int): [CountryState!]! ( : 36 37 }