Type Alias Bracket

Bracket: {
    __typename?: "Bracket";
    bucket: Scalars["Float"];
    max: Scalars["Float"];
    min: Scalars["Float"];
    type?: Maybe<Scalars["String"]>;
}

A bracket description for a given raid zone. Brackets have a minimum value, maximum value, and a bucket that can be used to establish all of the possible brackets. The type field indicates what the brackets represent, e.g., item levels or game patches, etc.

Type declaration

  • Optional__typename?: "Bracket"
  • bucket: Scalars["Float"]

    A float representing the value to increment when moving from bracket 1 to bracket N, etc.

  • max: Scalars["Float"]

    An integer representing the value used by bracket N when there are a total of N brackets, etc.

  • min: Scalars["Float"]

    An integer representing the minimum value used by bracket number 1, etc.

  • Optionaltype?: Maybe<Scalars["String"]>

    The localized name of the bracket type.

""