1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-04 00:48:32 +00:00
FrankerFaceZ/src/modules/emote_card/twitch_data.gql
SirStendec 21bc0a704f 4.44.0
* Added: Initial re-implementation of emote information cards. These have been broken for a while due to changes in Twitch's website preventing us from accessing them.
* Added: Setting to hide charity progress elements in chat.
* Changed: Emote tool-tips now display emote artists.
* Changed: The `Chat Command` chat action can now optionally be sent in another channel. Note that when doing so, you will not receive feedback from your sent message.
* Fixed: The 'Viewer Count' tool-tip duplicating itself.
* Fixed: Emote menu repeatedly requesting FFZ data.

* API Added: Ephemeral profiles can now be created by passing `ephemeral: true` in the options when creating a profile. These profiles are temporary and read-only.
2023-03-27 18:50:32 -04:00

65 lines
700 B
GraphQL

query FFZ_EmoteCard ($emoteID: ID!) {
emote(id: $emoteID) {
id
type
token
setID
artist {
id
login
displayName
}
owner {
id
login
displayName
channel {
id
localEmoteSets {
id
emotes {
id
token
}
}
}
stream {
id
type
}
self {
follower {
followedAt
}
subscriptionBenefit {
id
tier
}
}
subscriptionProducts {
id
displayName
tier
name
url
emotes {
id
token
}
priceInfo {
id
currency
price
}
}
}
bitsBadgeTierSummary {
threshold
self {
isUnlocked
numberOfBitsUntilUnlock
}
}
type
}
}