ConfigureDataTable
Signature
mutation {
ConfigureDataTable(dataTableId: ..., columns: ...)
}
Retourne : [DataTableColumn]
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
dataTableId | ID! | ✓ | — | — |
columns | [DataTableColumnConfigurationInput!]! | ✓ | — | — |
Exemple
mutation {
ConfigureDataTable(
dataTableId: $dataTableId
columns: $columns
) {
id
technicalCode
label
type
append
displayable
exportable
sortIndex
filterType {}
pinned {}
filterValues {}
}
}