OBJECT
Continent
link GraphQL Schema definition
1 type Continent { 2 String! : 3 4 Int! : 5 6 # Required permission: Country:read 7 # 8 # Limit is optional 9 # 10 # Arguments 11 # where: (self-explanatory) 12 # sort: (self-explanatory) 13 # limit: (self-explanatory) 14 # page: (self-explanatory) 15 CountryFilter, : [CountrySort!] = [name_ASC], : Int, : Int): [Country!]! ( : 16 17 }