Type Alias Region

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

A single region for the game.

Type declaration

  • Optional__typename?: "Region"
  • compactName: Scalars["String"]

    The localized compact name of the region, e.g., US for United States.

  • id: Scalars["Int"]

    The ID of the region.

  • name: Scalars["String"]

    The localized name of the region.

  • Optionalservers?: Maybe<ServerPagination>

    The servers found within this region.

  • slug: Scalars["String"]

    The slug for the region, usable when looking up characters and guilds by server.

  • Optionalsubregions?: Maybe<Maybe<Subregion>[]>

    The subregions found within this region.