OBJECT
CreatorReferralSummary
Contains the statistics summary for creator referral link.
link GraphQL Schema definition
1 type CreatorReferralSummary { 2 3 # Average referrals per day in the given date range. 4 : Int! 5 6 # List of data points in the summary. 7 : [CreatorReferralSummaryDay!]! 8 9 # Total referrals in the given date range. 10 : 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. 14 : CreatorReferralTrend! 15 16 }