OBJECT

CreatorBadgeFlairAsset

A set of URLs where clients can find the badge flair asset for a given creator at a given tier

link GraphQL Schema definition

1type CreatorBadgeFlairAsset {
2
3# The tier to which these flair assets correspond to, as determined by the creator
4# at time of upload.
5tier: CreatorBadgeFlairTier!
6
7# The "1x" dimension (18x18) image URL.
8image1xURL: String!
9
10# The "2x" dimension (36x36) image URL.
11image2xURL: String!
12
13# The "4x" dimension (72x72) image URL.
14image4xURL: String!
15
16}