OBJECT

CreatorReferralLink

A url to be shared by a creator to gain referrals, and associated metadata.

link GraphQL Schema definition

1type CreatorReferralLink {
2
3# The body text that will show on social media when the associated url is shared
4# -- og:description.
5description: String!
6
7# The ID of the referral link.
8id: ID!
9
10# The image that will show on social media when the associated url is shared --
11# og:image.
12imageURL: String!
13
14# The title text that will show on social media when the associated url is shared
15# -- og:title.
16title: String!
17
18# The url of the referral link.
19url: String!
20
21}