UpdateCommunication
Signature
mutation {
UpdateCommunication(communicationId: ...)
}
Retourne : Communication
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
communicationId | ID! | ✓ | — | — |
issuerId | ID | — | — | |
period | Date | — | — | |
htmlContent | String | — | — | |
localizedHtmlContent | [LocalizedStringInput] | — | — | |
title | String | — | — | |
localizedTitle | [LocalizedStringInput] | — | — | |
communicationTypeId | ID | — | — |
Exemple
mutation {
UpdateCommunication(
communicationId: $communicationId
) {
id
title
localizedTitle {}
issuer {}
communicationType {}
period
htmlContent
localizedHtmlContent {}
state {}
publishDate
CommunicationDocuments {}
communicationDocuments {}
}
}