OBJECT

AggregatedReferrals

Grouping of referral sources with name and count -- e.g. ("UK", 1437).

link GraphQL Schema definition

1type AggregatedReferrals {
2
3# Count of the referrals from the named source (1437).
4count: Int!
5
6# Name of the referral source ("UK").
7name: String!
8
9}