OBJECT

CreatorReferralSummaryDay

Each data point contains date and list of links with number of referred users.

link GraphQL Schema definition

1type CreatorReferralSummaryDay {
2
3# The date for the enclosed data.
4date: Time!
5
6# List of CreatorReferralLinkStat objects on the given date.
7linkStats: [CreatorReferralLinkStat!]!
8
9# The total number of referred users on the given date.
10referralCountSum: Int!
11
12}