AddStake
Signature
mutation {
AddStake(securityId: ..., stakerName: ..., securitiesNumber: ...)
}
Retourne : Security
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
securityId | ID! | ✓ | — | — |
stakerName | String! | ✓ | — | — |
securitiesNumber | Float! | ✓ | — | — |
Exemple
mutation {
AddStake(
securityId: $securityId
stakerName: $stakerName
securitiesNumber: $securitiesNumber
) {
id
type {}
securityType {}
securityTypeDetailed {}
name
stakes {}
company {}
nominalValue
distributionPeriodicity {}
securityFeePatterns {}
defaultSecurityFeePattern {}
numberOfDecimals
latestValue {}
remainingParticipations {}
securityValues {}
engagedInvestmentAmount
movements {}
}
}