Appearance
Date range filter for history queries. Use with pagination parameter for Relay-compliant pagination.
graphql
input HistoryDateRangeInput {
startDate: DateTime!
endDate: DateTime!
operationType: HistoryOperationType
}Fields
HistoryDateRangeInput.startDate ● DateTime! non-null scalar
Start of the date range (ISO 8601 format). Queries are cached at day granularity for efficiency.
HistoryDateRangeInput.endDate ● DateTime! non-null scalar
End of the date range (ISO 8601 format). Queries are cached at day granularity for efficiency.
HistoryDateRangeInput.operationType ● HistoryOperationType enum
Filter by operation type (INSERT, UPDATE, DELETE)