OBJECT
Region
A single region for the game.
link GraphQL Schema definition
- type Region {
- # The ID of the region.
- Int! :
- # The localized compact name of the region, e.g., US for United States.
- String! :
- # The localized name of the region.
- String! :
- # The slug for the region, usable when looking up characters and guilds by server.
- String! :
- # The subregions found within this region.
- Subregion] : [
- # The servers found within this region.
- #
- # Arguments
- # limit: Optional. The number of servers to retrieve per page. If
- # omitted, defaults to 100. The maximum allowed value is 100, and minimum allowed
- # value is 1.
- # page: Optional. The page of paginated data to retrieve. If
- # omitted, defaults to the first page.
- Int, : Int): ServerPagination ( :
- }
link Require by
- ReportA single report uploaded by a player to a guild or personal logs.
- ServerA single server. Servers correspond to actual game servers that characters and guilds reside on.
- SubregionA single subregion. Subregions are used to divide a region into sub-categories, such as French or German subregions of a Europe region.
- WorldDataThe world data object contains collections of data such as expansions, zones, encounters, regions, subregions, etc.