OBJECT

CreatorReferralLinkStat

Contains a reference to the link object and the number of referrals from that link.

link GraphQL Schema definition

1type CreatorReferralLinkStat {
2
3# The reference to the link that caused the associated number of referrals.
4link: CreatorReferralLink!
5
6# The number of referred users for the given link.
7referralCount: Int!
8
9}