OBJECT

CheermoteDisplayType

Information about the methods to display a Cheermote.

link GraphQL Schema definition

1type CheermoteDisplayType {
2
3# The animation style. For example, "static" or "animated"
4# Although this is probably more accurately represented as an emum, these strings
5# are going to have to be used
6# when creating the full URL for a Cheermote from the template URL. Rather than
7# forcing each client to create the
8# same enum -> string mapping, we will just pass these directly as strings.
9animation: String!
10
11# The extension for this animation style. For example, "png" or "gif"
12# Although this is probably more accurately represented as an emum, these strings
13# are going to have to be used
14# when creating the full URL for a Cheermote from the template URL. Rather than
15# forcing each client to create the
16# same enum -> string mapping, we will just pass these directly as strings.
17extension: String!
18
19}