UpdateImport
Signature
mutation {
UpdateImport(id: ...)
}
Retourne : Import!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
id | ID! | ✓ | — | — |
name | String | — | — | |
type | ImportType | — | — | |
dataset | [ImportDataType!] | — | — |
Exemple
mutation {
UpdateImport(
id: $id
) {
id
name
type {}
dataset {}
googleDriveFolderUrl
defaultMode {}
maxLineToImport
executions {}
createdAt
updatedAt
}
}