1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-12 06:01:55 +00:00
FrankerFaceZ/src/utilities/data/user-fetch.gql
SirStendec 3cbe4ee2fc 4.17.13
* 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.
2020-01-11 17:13:56 -05:00

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
}
}
}