CreatePledge
Signature
mutation {
CreatePledge(transactionId: ..., securitiesNumber: ..., bankName: ..., bankAddress: ..., initialEndDate: ...)
}
Retourne : Pledge
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
transactionId | ID! | ✓ | — | — |
securitiesNumber | Float! | ✓ | — | — |
bankName | String! | ✓ | — | — |
bankAddress | AddressInput! | ✓ | — | — |
initialEndDate | Date! | ✓ | — | — |
startDate | Date | — | — | |
agreementDocument | UploadDocument | — | — |
Exemple
mutation {
CreatePledge(
transactionId: $transactionId
securitiesNumber: $securitiesNumber
bankName: $bankName
bankAddress: $bankAddress
initialEndDate: $initialEndDate
) {
# Sélectionner les champs souhaités
}
}