OBJECT
EmbeddedEmote
EmbeddedEmote is an encoding format used to describe an emote embedded in a string of text.
Example: body = "hey KappaHD" from = 4 to = 10
"KappaHD" will be replaced with the KappaHD emote image.
link GraphQL Schema definition
1 type EmbeddedEmote { 2 3 # The emote's identifier, for example "115847" -> KappaHD. 4 : ID 5 6 # from is the index of the string where replacement starts. 7 : Int 8 9 : ID 10 11 # setID is the identifier of the set this emote is in. 12 : ID 13 14 # to is the index of the string where replacement ends. 15 : Int 16 17 }