1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-11 21:51:56 +00:00
FrankerFaceZ/src/utilities/data/search-user.gql
SirStendec 275248ca36 4.4.1
* 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.
2019-06-14 21:24:48 -04:00

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