UpdateDataProjectionItem
Signature
mutation {
UpdateDataProjectionItem(dataProjectionItemId: ..., name: ..., sortIndex: ..., displayable: ...)
}
Retourne : DataProjectionItem!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
dataProjectionItemId | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
sortIndex | Int! | ✓ | — | — |
displayable | Boolean! | ✓ | — | — |
Exemple
mutation {
UpdateDataProjectionItem(
dataProjectionItemId: $dataProjectionItemId
name: $name
sortIndex: $sortIndex
displayable: $displayable
) {
id
technicalCode
name
sortIndex
displayable
}
}