Add cancellation feedback schema and operations #220

Open
loewy wants to merge 2 commits from loewy/add-cancellation-feedback-schema-and-ops into master
2 changed files with 10 additions and 2 deletions
Showing only changes of commit 8649673f1b - Show all commits

View File

@@ -9683,7 +9683,11 @@ export const SubmitCancellationFeedbackDocument = gql`
$feedback: String
$metadata: CancellationFeedbackMetadataInput
) {
submitCancellationFeedback(reasons: $reasons, feedback: $feedback)
submitCancellationFeedback(
reasons: $reasons
feedback: $feedback
metadata: $metadata
)
}
`;
export type SubmitCancellationFeedbackMutationFn = Apollo.MutationFunction<

View File

@@ -68,5 +68,9 @@ mutation SubmitCancellationFeedback(
$feedback: String
$metadata: CancellationFeedbackMetadataInput
) {
submitCancellationFeedback(reasons: $reasons, feedback: $feedback)
submitCancellationFeedback(
reasons: $reasons
feedback: $feedback
metadata: $metadata
)
}