Type Alias Guild

Guild: {
    __typename?: "Guild";
    attendance: GuildAttendancePagination;
    competitionMode: Scalars["Boolean"];
    currentUserRank?: Maybe<GuildRank>;
    description: Scalars["String"];
    faction: GameFaction;
    id: Scalars["Int"];
    members: CharacterPagination;
    name: Scalars["String"];
    server: Server;
    stealthMode: Scalars["Boolean"];
    tags?: Maybe<Maybe<GuildTag>[]>;
    zoneRanking: GuildZoneRankings;
}

A single guild. Guilds earn their own rankings and contain characters. They may correspond to a guild in-game or be a custom guild created just to hold reports and rankings.

Type declaration

  • Optional__typename?: "Guild"
  • attendance: GuildAttendancePagination
  • competitionMode: Scalars["Boolean"]

    Whether or not the guild has competition mode enabled.

  • OptionalcurrentUserRank?: Maybe<GuildRank>

    The current user's rank within the guild. Only accessible via user authentication with the "view-user-profile" scope.

  • description: Scalars["String"]

    The description for the guild that is displayed with the guild name on the site.

  • faction: GameFaction

    The faction of the guild.

  • id: Scalars["Int"]

    The ID of the guild.

  • members: CharacterPagination

    The member roster for a specific guild. The result of this query is a paginated list of characters. This query only works for games where the guild roster is verifiable, e.g., it does not work for Classic Warcraft.

  • name: Scalars["String"]

    The name of the guild.

  • server: Server

    The server that the guild belongs to.

  • stealthMode: Scalars["Boolean"]

    Whether or not the guild has stealth mode enabled.

  • Optionaltags?: Maybe<Maybe<GuildTag>[]>

    The tags used to label reports. In the site UI, these are called raid teams.

  • zoneRanking: GuildZoneRankings

    The guild's ranking for a zone. If zoneId is unset or null, uses the latest zone.