OBJECT

Continent

link GraphQL Schema definition

1type Continent {
2name: String!
3
4totalCountries: 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)
15countries(where: CountryFilter, sort: [CountrySort!] = [name_ASC], limit: Int, page: Int): [Country!]!
16
17}