UpdateTransactionFee
Signature
mutation {
UpdateTransactionFee(transactionFeeId: ..., amountAte: ..., amountAti: ...)
}
Retourne : Investment!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
transactionFeeId | ID! | ✓ | — | — |
amountAte | Amount! | ✓ | — | — |
amountAti | Amount! | ✓ | — | — |
retrocessionAmountAte | Amount | — | Deprecated. Use retrocessionAmountAtePrecise for sub-cent precision. | |
| When both are provided, retrocessionAmountAtePrecise takes precedence. | ||||
retrocessionAmountAti | Amount | — | Deprecated. Use retrocessionAmountAtiPrecise for sub-cent precision. | |
| When both are provided, retrocessionAmountAtiPrecise takes precedence. | ||||
retrocessionAmountAtePrecise | PreciseAmount | — | Precise retrocession amount HT (ex-tax) with sub-cent precision. | |
| Prefer this over retrocessionAmountAte. | ||||
retrocessionAmountAtiPrecise | PreciseAmount | — | Precise retrocession amount TTC (incl. tax) with sub-cent precision. | |
| Prefer this over retrocessionAmountAti. |
Exemple
mutation {
UpdateTransactionFee(
transactionFeeId: $transactionFeeId
amountAte: $amountAte
amountAti: $amountAti
) {
# Sélectionner les champs souhaités
}
}