CreateSecurityFeePatternBase
Signature
mutation {
CreateSecurityFeePatternBase(securityId: ..., name: ...)
}
Retourne : SecurityFeePatternBase
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
securityId | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
Exemple
mutation {
CreateSecurityFeePatternBase(
securityId: $securityId
name: $name
) {
id
name
securityFees {}
security {}
isDefault
isDeleted
}
}