OBJECT
OfferSelfConnection
link GraphQL Schema definition
1 type OfferSelfConnection { 2 3 # Instructions on how to redeem the items that have been claimed. 4 # Supplied in Markdown. 5 : String 6 7 # The data (link, text, or claim code) for the entitlement that was created. 8 : String 9 10 # Indicates whether the user has been entitled. 11 : Boolean! 12 13 # Represents the user's ability to claim an offer 14 # Optional - onlyActiveOffers excludes eligibility data for offers that are 15 # inactive (future or expired). 16 (: Boolean): OfferEligibility 17 18 # Represents data that was used to previously claim this offer 19 : [OfferOrderInformation!] 20 21 }