OBJECT
AutoExportSetting
AutoExportSettings are used for saving custom export configurations. You can create AutoExportSettings using the createAutoExportSetting mutation. Example Query:
{
node(id:"AutoExportSetting:5ab16b6b48273300019b14e1"){
... on AutoExportSetting{
application {
id
}
exportParameters {
projection
merge
contourInterval
layer
fileFormat
resolution
}
}
}
}
link
Implements
Fields
link Required by
- AutoExportSettingEdgenull
- CreateAutoExportSettingPayloadCreate an AutoExportSetting
- ExportExports are used for getting data out of the DroneDeploy platform. You can create exports using the createExport mutation. Exports take some time to process so after one is created you need to wait until it has the status "COMPLETE" before a download link is available. Exports last for 30 days before expiring and will need to be regenerated after that. Example Query: ``` { node(id:"Export:5ab16b6b48273300019b14e1"){ ... on Export{ user{ username } parameters { projection merge contourInterval layer fileFormat resolution } status downloadPath } } } ```