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