OBJECT
Journey
An object containing grouped offers available based on time windows or eligibility
link GraphQL Schema definition
1 type Journey { 2 3 # Unique identifier for the journey. 4 : ID! 5 6 # List of offers associated with a Journey 7 : [JourneyOffer]! 8 9 # The type for if a journey is a CAMPAIGN or JOURNEY 10 : JourneyType! 11 12 : GameV2 13 14 # Connection for the current user 15 : JourneySelfConnection 16 17 # Assets for the journey 18 : JourneyAssets! 19 20 # The account link information for this Journey if thirdPartyAccountType is 21 # present and the customer has already linked their account. 22 : AccountLink 23 24 # Configuration for the third-party account link for this Journey. 25 # journeyShortName - name of the journey page used to validate the redirectUrl 26 # passed to build the third party account link url 27 # redirectUrl - page url user gets redirected to after linking their third party 28 # account 29 # Optional - String debug will display the string id and locale for string assets 30 ( 31 : String, 32 : String, 33 : Boolean 34 ): AccountLinkConfig 35 36 }