OBJECT

ExtensionRating

ExtensionRating contains the information of a user's rating of a Twitch extension.

link GraphQL Schema definition

1type ExtensionRating {
2
3# The ID of the recorded rating.
4id: ID!
5
6# Whether the user recommended the extension or not.
7isRecommended: Boolean!
8
9# Where the user submitted the rating.
10location: ExtensionRatingLocation!
11
12}