OBJECT
CreatorReferralLink
A url to be shared by a creator to gain referrals, and associated metadata.
link GraphQL Schema definition
1 type CreatorReferralLink { 2 3 # The body text that will show on social media when the associated url is shared 4 # -- og:description. 5 : String! 6 7 # The ID of the referral link. 8 : ID! 9 10 # The image that will show on social media when the associated url is shared -- 11 # og:image. 12 : String! 13 14 # The title text that will show on social media when the associated url is shared 15 # -- og:title. 16 : String! 17 18 # The url of the referral link. 19 : String! 20 21 }