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
  }
}

Last updated