UpdateSegment
Signature
mutation {
UpdateSegment(segmentId: ..., name: ...)
}
Retourne : Segment
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
segmentId | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
description | String | — | — |
Exemple
mutation {
UpdateSegment(
segmentId: $segmentId
name: $name
) {
# Sélectionner les champs souhaités
}
}