mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-10-12 06:01:55 +00:00
* Changed: Replace a few unnecessary menu components that only display markdown with a generic component. * Changed: Initial work for letting users override display names and user colors in chat. * Changed: The FFZ menu button no longer depends on add-ons being loaded to load itself. * Fixed: Rendering of highlighted messages in Chat on Videos. * Fixed: Featured channels menu not working when a bad channel is in the list.
13 lines
No EOL
192 B
GraphQL
13 lines
No EOL
192 B
GraphQL
query FFZ_FetchUser($id: ID, $login: String) {
|
|
user(id: $id, login: $login) {
|
|
id
|
|
login
|
|
displayName
|
|
profileImageURL(width: 50)
|
|
roles {
|
|
isAffiliate
|
|
isPartner
|
|
isStaff
|
|
}
|
|
}
|
|
} |