OBJECT

RecommendationFeedback

Feedback from a user about a piece of content.

link GraphQL Schema definition

1type RecommendationFeedback {
2
3# Reason for feedback.
4category: RecommendationFeedbackCategory!
5
6# Feedback target.
7content: RecommendationFeedbackContent
8
9# Recommendation Feedback ID. Generated from the type, category, content id, and
10# user id.
11id: ID!
12
13# Last time this feedback was given.
14lastUpdated: Time!
15
16# Feedback target type.
17type: RecommendationFeedbackType!
18
19# Feedback giver.
20user: User
21
22}