I'm not sure if the emotes were pushed before, but currently, they aren't. We need to use a GQL query for this:
query PersonalInfo($id: String!, $platform: ConnectionPlatform!) {
user: userByConnection(platform: $platform, id: $id) {
id,
emote_sets(entitled: true) {
id,
name,
flags,
}
}
}
I'm not sure if the emotes were pushed before, but currently, they aren't. We need to use a GQL query for this: