OBJECT
CreatorReferralSummaryDay
Each data point contains date and list of links with number of referred users.
link GraphQL Schema definition
1 type CreatorReferralSummaryDay { 2 3 # The date for the enclosed data. 4 : Time! 5 6 # List of CreatorReferralLinkStat objects on the given date. 7 : [CreatorReferralLinkStat!]! 8 9 # The total number of referred users on the given date. 10 : Int! 11 12 }