Delete a Daily Recap Question

Use the deleteDailyRecapEntry mutation to delete an question entry with its corresponding answer for a specific date.

Required Arguments

Available Fields

The following fields will be displayed in the response:

Example

mutation {
  deleteDailyRecapEntry(
    questionId: "RGFpbHlRdWVzdGlvbjo3Y2E4YzAxZS1kZDRjLTRlODktYjA3NS04ZGZmNzhlZDlhZTE="
    date: "2022-02-23"
  ) {
    success
    message
  }
}


Last updated