ENUM

ReferralsDimension

How to group the referral sources.

link GraphQL Schema definition

1enum ReferralsDimension {
2
3# Return referrals grouped by platforms.
4PLATFORM
5
6# Return referrals grouped by country.
7COUNTRY
8
9# Return referrals grouped by channel.
10CHANNEL
11
12# Return referrals grouped by internal source.
13INTERNAL
14
15# Return referrals grouped by external source.
16EXTERNAL
17}