OBJECT
Hero
Represents the user's Hero.
link GraphQL Schema definition
1 type Hero { 2 3 # A unique ID for this hero. 4 : ID! 5 6 # The URI to the pre-composited, full-resolution hero image. 7 : String! 8 9 # The configuration of that hero, to be used by the editor. 10 : HeroConfiguration 11 12 }