OBJECT

Journey

An object containing grouped offers available based on time windows or eligibility

link GraphQL Schema definition

1type Journey {
2
3# Unique identifier for the journey.
4id: ID!
5
6# List of offers associated with a Journey
7offers: [JourneyOffer]!
8
9# The type for if a journey is a CAMPAIGN or JOURNEY
10type: JourneyType!
11
12game: GameV2
13
14# Connection for the current user
15self: JourneySelfConnection
16
17# Assets for the journey
18assets: JourneyAssets!
19
20# The account link information for this Journey if thirdPartyAccountType is
21# present and the customer has already linked their account.
22accountLink: 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
30accountLinkConfig(
31journeyShortName: String,
32redirectUrl: String,
33stringDebug: Boolean
34): AccountLinkConfig
35
36}