# Feedback

The `sendFeedback` mutation will send an email to the Suggestic team with feedback

| Arguments | Type    | Description      |
| --------- | ------- | ---------------- |
| `subject` | String! | Feedback subject |
| `message` | String! | Feedback message |

### Example

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

```graphql
mutation {
  sendFeedback(
    subject: "Feedback"
    message: "Wrong Recipe"
  ) {
    success
    messages
  }
}
```

{% endtab %}

{% tab title="Response" %}

```javascript
{
  "data": {
    "sendFeedback": {
      "success": true
      "message": "Feedback send"
    }
  }
}
```

{% endtab %}
{% endtabs %}
