Feedback
Last updated
Was this helpful?
The sendFeedback mutation will send an email to the Suggestic team with feedback
Arguments
Type
Description
subject
String!
Feedback subject
message
String!
Feedback message
mutation {
sendFeedback(
subject: "Feedback"
message: "Wrong Recipe"
) {
success
messages
}
}{
"data": {
"sendFeedback": {
"success": true
"message": "Feedback send"
}
}
}Last updated
Was this helpful?
Was this helpful?