OBJECT

CreatorReferralSummary

Contains the statistics summary for creator referral link.

link GraphQL Schema definition

1type CreatorReferralSummary {
2
3# Average referrals per day in the given date range.
4averageReferrals: Int!
5
6# List of data points in the summary.
7days: [CreatorReferralSummaryDay!]!
8
9# Total referrals in the given date range.
10totalReferrals: Int!
11
12# Trend of the referrals per day in the given date range, when compared to the
13# previous date range of the same length.
14trend: CreatorReferralTrend!
15
16}