mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-10-11 21:51:56 +00:00
* Added: `Current Channel` rule for profiles, to match all pages associated with a certain channel without needing many page rules. * Fixed: Unreadable text in light theme when importing a profile. * Changed: Display a matching page URL in the `Current Page` rule for profiles. * Changed: Do not display an inactive profile warning on the Add-Ons settings page, since those are not affected by profiles. * Changed: Update Vue to a more recent version. * Maintenance: Update the chat types enum based on the latest version of Twitch. * API Added: `TwitchData` module (`site.twitch_data`) for querying Twitch's API for data.
16 lines
No EOL
315 B
GraphQL
16 lines
No EOL
315 B
GraphQL
query FFZ_SearchUser($query: String!, $first: Int, $after: String) {
|
|
searchFor(userQuery: $query, platform: "web", target: {index: USER, cursor: $after, limit: $first}) {
|
|
users {
|
|
cursor
|
|
pageInfo {
|
|
hasNextPage
|
|
}
|
|
items {
|
|
id
|
|
login
|
|
displayName
|
|
profileImageURL(width: 50)
|
|
}
|
|
}
|
|
}
|
|
} |