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

Available Fields

The following fields will be displayed in the response:

Example

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

  }
}


Last updated