CreateImport
Signature
mutation {
CreateImport(name: ..., type: ..., dataset: ...)
}
Retourne : Import!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
name | String! | ✓ | — | — |
type | ImportType! | ✓ | — | — |
dataset | [ImportDataType!]! | ✓ | — | — |
Exemple
mutation {
CreateImport(
name: $name
type: $type
dataset: $dataset
) {
# Sélectionner les champs souhaités
}
}