Get Daily Recaps

Use the dailyRecaps query to get the information of the daily questions available in the coaching portal and in the app, based on given range of dates.

Required Argument

Available Fields

DailyQuestions object

The Questions object displays the information of the answer.

Answer object

The Answer object displays the information of the answer

Available Fields

Example

{
  dailyRecaps(startDate: "2022-02-15", endDate: "2022-02-24") {
    date
    questions {
      id
      isDefault
      done
      imageUrl
      question
      answers {
        id
        answer
        selected
        type
      }
    }
  }
}

Example for Mood

{
  dailyRecaps(startDate: "2023-05-08", endDate: "2023-05-10" group: MOOD) {
    date
    questions {
      id
      done
      imageUrl
      question
      answers {
        id
        answer
        selected
        type
        imageUrl
      }
    }
  }
}

Last updated