OBJECT

Hero

Represents the user's Hero.

link GraphQL Schema definition

1type Hero {
2
3# A unique ID for this hero.
4id: ID!
5
6# The URI to the pre-composited, full-resolution hero image.
7imageURI: String!
8
9# The configuration of that hero, to be used by the editor.
10self: HeroConfiguration
11
12}