UpdateDistributor
Signature
mutation {
UpdateDistributor(id: ..., vatPercentage: ...)
}
Retourne : Distributor
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
id | ID! | ✓ | — | — |
vatPercentage | Float! | ✓ | — | — |
Exemple
mutation {
UpdateDistributor(
id: $id
vatPercentage: $vatPercentage
) {
# Sélectionner les champs souhaités
}
}