# Select Daily Recap Questions

Use the `selectDailyRecapQuestions` mutation to select one or more questions to be later displayed when executing the [`dailyRecap`](https://docs.suggestic.com/graphql/queries/tracking/daily-recap/get-daily-recap#required-argument) and the [`dailyRecaps`](https://docs.suggestic.com/graphql/query/queries/tracking/daily-recap/get-daily-recaps) queries. These sets of questions will vary constantly according to what the user is selecting.

### Required Arguments

| **Argument Name** | **Type** |                                                                                                        **Description**                                                                                                       |
| :---------------: | :------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|    `questions`    |   \[ID]  | <p>Unique question ID. Use the <a href="https://docs.suggestic.com/graphql/query/queries/tracking/daily-recap/get-daily-recap-questions"><code>dailyRecapQuestions</code> </a>query to get the Id of the questions. <br></p> |

### Available Fields

The following fields will be displayed in the response:

<table data-header-hidden><thead><tr><th width="219.33333333333331" align="center">Field</th><th align="center">Type</th><th align="center">Description</th></tr></thead><tbody><tr><td align="center"><strong>Field</strong></td><td align="center"><strong>Type</strong></td><td align="center"><strong>Description</strong></td></tr><tr><td align="center"><code>success</code></td><td align="center">Boolean</td><td align="center"><strong>True</strong> if the daily recap question has been set successfully. Otherwise, <strong>False</strong><br></td></tr><tr><td align="center"><code>Message</code></td><td align="center">String</td><td align="center">Description of the result</td></tr></tbody></table>

## Example

{% tabs %}
{% tab title="Request" %}

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

  }
}



```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "selectDailyRecapQuestions": {
      "success": true,
      "message": "Questions set updated"
    }
  }
}
```

{% endtab %}
{% endtabs %}
