feat(graphql): messages can be discarded through api

This commit is contained in:
Paul Chavard 2024-06-04 17:40:48 +02:00
parent f508921d2f
commit 9753a91db6
No known key found for this signature in database
8 changed files with 169 additions and 1 deletions

View file

@ -819,6 +819,19 @@ class API::V2::StoredQuery
}
}
mutation dossierSupprimerMessage($input: DossierSupprimerMessageInput!) {
dossierSupprimerMessage(input: $input) {
message {
id
createdAt
discardedAt
}
errors {
message
}
}
}
mutation dossierModifierAnnotationText(
$input: DossierModifierAnnotationTextInput!
) {