Type Alias Server

Server: {
    __typename?: "Server";
    characters?: Maybe<CharacterPagination>;
    guilds?: Maybe<GuildPagination>;
    id: Scalars["Int"];
    name: Scalars["String"];
    normalizedName: Scalars["String"];
    region: Region;
    slug: Scalars["String"];
    subregion: Subregion;
}

A single server. Servers correspond to actual game servers that characters and guilds reside on.

Type declaration

  • Optional__typename?: "Server"
  • Optionalcharacters?: Maybe<CharacterPagination>

    The characters found on this server (and any servers connected to this one.

  • Optionalguilds?: Maybe<GuildPagination>

    The guilds found on this server (and any servers connected to this one.

  • id: Scalars["Int"]

    The ID of the server.

  • name: Scalars["String"]

    The name of the server in the locale of the subregion that the server belongs to.

  • normalizedName: Scalars["String"]

    The normalized name is a transformation of the name, dropping spaces. It is how the server appears in a World of Warcraft log file.

  • region: Region

    The region that this server belongs to.

  • slug: Scalars["String"]

    The server slug, also a transformation of the name following Blizzard rules. For retail World of Warcraft realms, this slug will be in English. For all other games, the slug is just a transformation of the name field.

  • subregion: Subregion

    The subregion that this server belongs to.