CreateCustomExport
Signature
mutation {
CreateCustomExport(name: ..., description: ...)
}
Retourne : CustomExport
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
name | String! | ✓ | — | — |
description | String! | ✓ | — | — |
variables | [CustomExportVariableInput] | — | Variable templates for parameterized queries |
Exemple
mutation {
CreateCustomExport(
name: $name
description: $description
) {
# Sélectionner les champs souhaités
}
}