add missing field
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
2025-12-16 17:09:18 -08:00
parent f5e6459882
commit 8649673f1b
2 changed files with 10 additions and 2 deletions

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