For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

mutation {
  sendFeedback(
    subject: "Feedback"
    message: "Wrong Recipe"
  ) {
    success
    messages
  }
}
{
  "data": {
    "sendFeedback": {
      "success": true
      "message": "Feedback send"
    }
  }
}

Last updated

Was this helpful?