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