OBJECT
Subregion
A single subregion. Subregions are used to divide a region into sub-categories, such as French or German subregions of a Europe region.
link GraphQL Schema definition
- type Subregion {
- # The ID of the subregion.
- Int! :
- # The localized name of the subregion.
- String! :
- # The region that this subregion is found in.
- Region! :
- # 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 ( :
- }