OBJECT

UserRelationship

Subjective data on a User (user/channel) for the target user.

link GraphQL Schema definition

1type UserRelationship {
2
3# The time when a follower relationship between the user and the target user was
4# established.
5followedAt: Time
6
7# Statistics concerning how well the target user has performed in Prediction
8# Events on the user's channel.
9predictionStatistics: UserPredictionStatistics
10
11# The subscription benefit relationship between the user and the target user.
12# Null if the user is not subscribed to the other user.
13subscriptionBenefit: SubscriptionBenefit
14
15# Subscription tenure data for the user to the target user.
16subscriptionTenure(tenureMethod: SubscriptionTenureMethod!): SubscriptionTenure
17
18}