UpdateCmsBlockContent
Signature
mutation {
UpdateCmsBlockContent(cmsBlockId: ..., localizedContent: ...)
}
Retourne : CmsBlock
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
cmsBlockId | ID! | ✓ | — | — |
localizedContent | [LocalizedStringInput]! | ✓ | — | — |
Exemple
mutation {
UpdateCmsBlockContent(
cmsBlockId: $cmsBlockId
localizedContent: $localizedContent
) {
# Sélectionner les champs souhaités
}
}