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
) {
id
type {}
securityType {}
securityTypeDetailed {}
name
stakes {}
company {}
nominalValue
distributionPeriodicity {}
securityFeePatterns {}
defaultSecurityFeePattern {}
numberOfDecimals
latestValue {}
remainingParticipations {}
securityValues {}
engagedInvestmentAmount
movements {}
}
}