CreateDataExportInput
No description
input CreateDataExportInput {
subtype: String
columnConfig: [ColumnConfigInput!]!
format: String
exportName: String
redirectPath: String
filterConfig: JSON
properties: JSON
viewId: String
viewName: String
query: String
variables: JSON
connectionPath: String
maxRows: Int
}
Fields
CreateDataExportInput.subtype ● String scalar
CreateDataExportInput.columnConfig ● [ColumnConfigInput!]! non-null input
CreateDataExportInput.format ● String scalar
CreateDataExportInput.exportName ● String scalar
CreateDataExportInput.redirectPath ● String scalar
CreateDataExportInput.filterConfig ● JSON scalar
CreateDataExportInput.properties ● JSON scalar
Subtype-specific fields, e.g. templateId/tableId for reportable_table.
CreateDataExportInput.viewId ● String scalar
Saved accords-list view to export. Required for the accords_list subtype.
CreateDataExportInput.viewName ● String scalar
Display name of the saved accords-list view, used in the export file name.
CreateDataExportInput.query ● String scalar
GraphQL query whose rows are exported. Required for the graphql_query subtype.
CreateDataExportInput.variables ● JSON scalar
Variables for query. graphql_query subtype only.
CreateDataExportInput.connectionPath ● String scalar
Path to the connection within the query result. Required for the graphql_query subtype.
CreateDataExportInput.maxRows ● Int scalar
Cap on exported rows. graphql_query subtype only.
Member Of
createDataExport mutation