Type Alias Difficulty

Difficulty: {
    __typename?: "Difficulty";
    id: Scalars["Int"];
    name: Scalars["String"];
    sizes?: Maybe<Maybe<Scalars["Int"]>[]>;
}

A single difficulty for a given raid zone. Difficulties have an integer value representing the actual difficulty, a localized name that describes the difficulty level, and a list of valid sizes for the difficulty level.

Type declaration

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

    An integer representing a specific difficulty level within a zone. For example, in World of Warcraft, this could be Mythic. In FF, it could be Savage, etc.

  • name: Scalars["String"]

    The localized name for the difficulty level.

  • Optionalsizes?: Maybe<Maybe<Scalars["Int"]>[]>

    A list of supported sizes for the difficulty level. An empty result means that the difficulty level has a flexible raid size.