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