UpdateSecurity
Signature
mutation {
UpdateSecurity(securityType: ..., securityId: ..., name: ..., nominalValue: ..., distributionPeriodicity: ...)
}
Retourne : Security
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
securityType | SecurityType! | ✓ | — | — |
securityId | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
nominalValue | PreciseAmount! | ✓ | — | — |
distributionPeriodicity | DistributionPeriodicity! | ✓ | — | — |
obligationSpecific | ObligationSpecificInput | — | — | |
convertibleObligationSpecific | ConvertibleObligationSpecificInput | — | — | |
scpiShareSpecific | ScpiShareSpecificInput | — | — | |
fundShareSpecific | FundShareSpecificInput | — | — | |
bsaSpecific | BsaSpecificInput | — | — |
Exemple
mutation {
UpdateSecurity(
securityType: $securityType
securityId: $securityId
name: $name
nominalValue: $nominalValue
distributionPeriodicity: $distributionPeriodicity
) {
id
type {}
securityType {}
securityTypeDetailed {}
name
stakes {}
company {}
nominalValue
distributionPeriodicity {}
securityFeePatterns {}
defaultSecurityFeePattern {}
numberOfDecimals
latestValue {}
remainingParticipations {}
securityValues {}
engagedInvestmentAmount
movements {}
}
}