Type Alias GameItem

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

A single item for the game.

Type declaration

  • Optional__typename?: "GameItem"
  • Optionalicon?: Maybe<Scalars["String"]>

    The icon for the item.

  • id: Scalars["Int"]

    The ID of the item.

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

    The localized name of the item. Will be null if no localization information exists for the item.