Select Daily Recap Questions

Use the selectDailyRecapQuestions mutation to select one or more questions to be later displayed when executing the dailyRecap and the dailyRecaps queries. These sets of questions will vary constantly according to what the user is selecting.

Required Arguments

Argument Name

Type

Description

questions

[ID]

Unique question ID. Use the dailyRecapQuestions query to get the Id of the questions.

Available Fields

The following fields will be displayed in the response:

Field

Type

Description

success

Boolean

True if the daily recap question has been set successfully. Otherwise, False

Message

String

Description of the result

Example

mutation {
  selectDailyRecapQuestions(
    questions: [
      "RGFpbHlRdWVzdGlvbjo3Y2E4YzAxZS1kZDRjLTRlODktYjA3NS04ZGZmNzhlZDlhZTE=",
      "RGFpbHlRdWVzdGlvbjo2ZDI0ZjQ5Ny0wNzQzLTQyYTQtYThlZi1lNjhiNzkyZjA0NmU="
    ]
  ) {
    success
    message

  }
}


Last updated