UploadOperationDocument
Signature
mutation {
UploadOperationDocument(operationId: ..., document: ...)
}
Retourne : Operation
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
operationId | ID! | ✓ | — | — |
document | UploadDocument! | ✓ | — | — |
Exemple
mutation {
UploadOperationDocument(
operationId: $operationId
document: $document
) {
# Sélectionner les champs souhaités
}
}