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