Start Journeys

Change a user's day in the journey

Use the startJourneys mutation to allow changing a user's day in the journey

Required Arguments

Argument

Type

Description

daysUnlocked

Int

Number of days when the user already started the journey

override

Boolean

If true, the number of days unlocked can be updated using daysUnlocked.

Available Field

The following fields will be part of the response.

Field name

Type

Description

sucess

String

True if the user journey has been updated. Otherwise, it displays False

message

String

Description of the result

Example

mutation {
  startJourneys(
    daysUnlocked: 2
    override: true
  ) {
    success
    message
  }
}

Last updated