Add cancellation feedback schema and operations #220

Merged
loewy merged 2 commits from loewy/add-cancellation-feedback-schema-and-ops into master 2025-12-26 18:17:11 +00:00
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 $feedback: String
$metadata: CancellationFeedbackMetadataInput $metadata: CancellationFeedbackMetadataInput
) { ) {
submitCancellationFeedback(reasons: $reasons, feedback: $feedback) submitCancellationFeedback(
reasons: $reasons
feedback: $feedback
metadata: $metadata
)
} }
`; `;
export type SubmitCancellationFeedbackMutationFn = Apollo.MutationFunction< export type SubmitCancellationFeedbackMutationFn = Apollo.MutationFunction<

View File

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