Get Daily Recap Questions

Use the dailyRecapQuestions query to get the information of all daily questions and their respective answers available in the coaching portal and in the app.

Available Fields

Field

Type

Description

id

String

Daily recap question ID

imageUrl

Int

URL of the question's image

question

String

Question's title

answers

Answer

Meeting duration. Expressed in minutes.

Answer object

The Answer object displays the information of the answer

Available Fields

Field

Type

Description

id

ID

Answer unique ID

answer

String

Answer text

selected

Boolean

true if the answer has been selected. Otherwise, false

type

HabitAnswerType

User habit's answer type. There are three possible values: NEGATIVE, NEUTRAL, POSITIVE

Example

{
  dailyRecapQuestions {
    id
    question
    imageUrl
    answers {
      id
      answer
      selected
      type
    }
  }
}

Last updated