Export
query Exports($filter: ExportFilter, $orderBy: ExportOrder) {
exports(filter: $filter, orderBy: $orderBy) {
nodes {
id
name
state
createdAt
updatedAt
queuedAt
startedAt
exportedAt
completedAt
failedAt
cancelledAt
dateRangeStart
dateRangeEnd
requestedBy {
id
}
}
}
}
type Export {
cancelledAt: DateTime
completedAt: DateTime
createdAt: DateTime!
dateRangeEnd: DateTime
dateRangeStart: DateTime
exportedAt: DateTime
failedAt: DateTime
id: ID!
name: String
queuedAt: DateTime
requestedBy: Agent!
startedAt: DateTime
state: ExportState!
updatedAt: DateTime!
}
Fields
Export.cancelledAt ● DateTime scalar common
The date and time that the export was cancelled.
Export.completedAt ● DateTime scalar common
The date and time that the event was created.
Export.createdAt ● DateTime! non-null scalar common
The date and time that the export was created.
Export.dateRangeEnd ● DateTime scalar common
The end of the date range for the export.
Export.dateRangeStart ● DateTime scalar common
The start of the date range for the export.
Export.exportedAt ● DateTime scalar common
The date and time that the export was exported.
Export.failedAt ● DateTime scalar common
The date and time that the export failed.
Export.id ● ID! non-null scalar common
Export.name ● String scalar common
The name of the export.
Export.queuedAt ● DateTime scalar common
The date and time that the export was queued.
Export.requestedBy ● Agent! non-null object common
The ID of the user who requested the export.
Export.startedAt ● DateTime scalar common
The date and time that the export was started.
Export.state ● ExportState! non-null enum common
The state of the export.
Export.updatedAt ● DateTime! non-null scalar common
The date and time that the export was last updated.
Member of
ExportConnection object ● ExportEdge object