UpdateEntityPropertyDocumentToSign
Signature
mutation {
UpdateEntityPropertyDocumentToSign(entityPropertyId: ..., name: ..., documentTemplateId: ...)
}
Retourne : EntityPropertyDocumentToSign
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
entityPropertyId | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
dataStrategyDefinition | Any | — | — | |
documentTemplateId | ID! | ✓ | — | — |
computedProperty | ComputedPropertyInput | — | — | |
resetsStatusOnValueChange | Boolean | — | — |
Exemple
mutation {
UpdateEntityPropertyDocumentToSign(
entityPropertyId: $entityPropertyId
name: $name
documentTemplateId: $documentTemplateId
) {
id
type {}
entityName {}
technicalCode
code
name
dataStrategy {}
dataStrategyDefinition
createdBy
createdAt
editable
specificTreatment {}
isComputed
resetsStatusOnValueChange
algorithm {}
validators
documentTemplate {}
}
}