OBJECT
Country
link GraphQL Schema definition
1 type Country implements Localizable { 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: Localization:read 19 # 20 # All elements are always returned 21 # 22 # Arguments 23 # where: (self-explanatory) 24 LocalizationFilter): [Localization!]! ( : 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 ( 36 CountryStateFilter, : 37 CountryStateSort!] = [code_ASC], : [ 38 Int, : 39 Int : 40 ): [CountryState!]! 41 42 }