UpdateSecurityValue
Signature
mutation {
UpdateSecurityValue(securityValueId: ..., price: ..., date: ...)
}
Retourne : SecurityValue
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
securityValueId | ID! | ✓ | — | — |
price | PreciseAmount! | ✓ | — | — |
date | Date! | ✓ | — | — |
Exemple
mutation {
UpdateSecurityValue(
securityValueId: $securityValueId
price: $price
date: $date
) {
# Sélectionner les champs souhaités
}
}