Type Alias Subregion

Subregion: {
    __typename?: "Subregion";
    id: Scalars["Int"];
    name: Scalars["String"];
    region: Region;
    servers?: Maybe<ServerPagination>;
}

A single subregion. Subregions are used to divide a region into sub-categories, such as French or German subregions of a Europe region.

Type declaration

  • Optional__typename?: "Subregion"
  • id: Scalars["Int"]

    The ID of the subregion.

  • name: Scalars["String"]

    The localized name of the subregion.

  • region: Region

    The region that this subregion is found in.

  • Optionalservers?: Maybe<ServerPagination>

    The servers found within this region.