Type Alias GameFaction

GameFaction: {
    __typename?: "GameFaction";
    id: Scalars["Int"];
    name: Scalars["String"];
}

A faction that a player or guild can belong to. Factions have an integer id used to identify them throughout the API and a localized name describing the faction.

Type declaration

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

    An integer representing the faction id.

  • name: Scalars["String"]

    The localized name of the faction.

""