DoCustomFileExport
Signature
mutation {
DoCustomFileExport(id: ..., googleDriveFolderLink: ...)
}
Retourne : CustomExport
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
id | ID! | ✓ | — | — |
googleDriveFolderLink | String! | ✓ | — | Google Drive destination folder link |
variables | Any | — | Variable values provided by user (map of technicalCode: value) |
Exemple
mutation {
DoCustomFileExport(
id: $id
googleDriveFolderLink: $googleDriveFolderLink
) {
id
name
description
hasQuery
exports {}
lastExport {}
lastDownloadedExport {}
variables {}
}
}