UpdateSecurityOperationTransfer
Signature
mutation {
UpdateSecurityOperationTransfer(id: ..., name: ..., date: ...)
}
Retourne : SecurityOperationTransfer
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
id | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
date | Date! | ✓ | — | — |
securityOperationDocuments | [SecurityOperationDocumentInput] | — | — |
Exemple
mutation {
UpdateSecurityOperationTransfer(
id: $id
name: $name
date: $date
) {
id
securityOperationDocuments {}
name
status {}
securityOperationStatus {}
type {}
securityOperationType {}
transactions {}
moneyMovements {}
kpiValues {}
asynchronousOperations {}
transactionSecurities {}
date
fromAccount {}
}
}