DoExport
Signature
mutation {
DoExport(dataTableType: ..., exportFileFormat: ...)
}
Retourne : Boolean!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
dataTableType | DataTableType! | ✓ | — | — |
exportFileFormat | ExportFileFormat! | ✓ | — | — |
params | Array | — | — |
Exemple
mutation {
DoExport(
dataTableType: $dataTableType
exportFileFormat: $exportFileFormat
) {
# Sélectionner les champs souhaités
}
}