CreateOperation
Signature
mutation {
CreateOperation(name: ..., companyId: ..., operationType: ..., targetAmount: ..., issuedSecurities: ..., taxation: ..., indicators: ..., paymentMethods: ...)
}
Retourne : Operation!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
name | String! | ✓ | — | — |
companyId | ID! | ✓ | — | — |
operationType | OperationType! | ✓ | — | — |
targetAmount | Amount! | ✓ | — | — |
issuedSecurities | Int! | ✓ | — | — |
taxation | [String]! | ✓ | — | — |
indicators | [OperationFinancingInfoIndicatorInput]! | ✓ | — | — |
paymentMethods | [PaymentMethod]! | ✓ | — | — |
Exemple
mutation {
CreateOperation(
name: $name
companyId: $companyId
operationType: $operationType
targetAmount: $targetAmount
issuedSecurities: $issuedSecurities
taxation: $taxation
indicators: $indicators
paymentMethods: $paymentMethods
) {
# Sélectionner les champs souhaités
}
}