UpdateEntityPropertyDocument
Signature
mutation {
UpdateEntityPropertyDocument(entityPropertyId: ..., name: ..., documentFormat: ...)
}
Retourne : EntityPropertyDocument
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
entityPropertyId | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
dataStrategyDefinition | Any | — | — | |
accountDocumentTypeId | ID | — | — | |
documentFormat | EntityPropertyDocumentFormatType! | ✓ | — | — |
documentType | DocumentType | — | — | |
computedProperty | ComputedPropertyInput | — | — |
Exemple
mutation {
UpdateEntityPropertyDocument(
entityPropertyId: $entityPropertyId
name: $name
documentFormat: $documentFormat
) {
# Sélectionner les champs souhaités
}
}