Type Alias Zone

Zone: {
    __typename?: "Zone";
    brackets?: Maybe<Bracket>;
    difficulties?: Maybe<Maybe<Difficulty>[]>;
    encounters?: Maybe<Maybe<Encounter>[]>;
    expansion: Expansion;
    frozen: Scalars["Boolean"];
    id: Scalars["Int"];
    name: Scalars["String"];
    partitions?: Maybe<Maybe<Partition>[]>;
}

A single zone from an expansion that represents a raid, dungeon, arena, etc.

Type declaration

  • Optional__typename?: "Zone"
  • Optionalbrackets?: Maybe<Bracket>

    The bracket information for this zone. This field will be null if the zone does not support brackets.

  • Optionaldifficulties?: Maybe<Maybe<Difficulty>[]>

    A list of all the difficulties supported for this zone.

  • Optionalencounters?: Maybe<Maybe<Encounter>[]>

    The encounters found within this zone.

  • expansion: Expansion

    The expansion that this zone belongs to.

  • frozen: Scalars["Boolean"]

    Whether or not the entire zone (including all its partitions) is permanently frozen. When a zone is frozen, data involving that zone will never change and can be cached forever.

  • id: Scalars["Int"]

    The ID of the zone.

  • name: Scalars["String"]

    The name of the zone.

  • Optionalpartitions?: Maybe<Maybe<Partition>[]>

    A list of all the partitions supported for this zone.