TemplateErrorLogSearchInput
Search criteria for filtering template error logs.
Provides comprehensive filtering options for error log analysis including error type classification, template identification, date ranges, and pagination. Supports sorting for systematic debugging workflows.
input TemplateErrorLogSearchInput {
errorTypes: [TemplateErrorType!]
templateIds: [String!]
dateFrom: DateTime
dateTo: DateTime
offset: Int!
page: Int!
sortInputs: [TemplateErrorLogSortInput!]
}
Fields
TemplateErrorLogSearchInput.errorTypes
● [TemplateErrorType!]
list enum
Filter by specific error type classifications.
Limits results to particular categories of errors (render errors, custom query errors) for focused debugging and analysis of specific failure patterns.
TemplateErrorLogSearchInput.templateIds
● [String!]
list scalar
Filter by specific template identifiers.
Limits results to errors from particular templates, enabling targeted debugging of problematic templates and template-specific error analysis.
TemplateErrorLogSearchInput.dateFrom
● DateTime
scalar
Filter errors occurring from this date onwards.
Sets the earliest date boundary for error log retrieval, useful for analyzing recent errors or errors within specific time periods.
TemplateErrorLogSearchInput.dateTo
● DateTime
scalar
Filter errors occurring up to this date.
Sets the latest date boundary for error log retrieval, useful for historical analysis or limiting results to specific time ranges.
TemplateErrorLogSearchInput.offset
● Int!
non-null scalar
Number of error log items to return per page.
Controls pagination size for manageable result sets and optimal performance during error log analysis.
TemplateErrorLogSearchInput.page
● Int!
non-null scalar
Page number for paginated results.
Specifies which page of results to retrieve when dealing with large error log datasets, enabling navigation through extensive error histories.
TemplateErrorLogSearchInput.sortInputs
● [TemplateErrorLogSortInput!]
list input
Sorting criteria for error log organization.
Defines how error logs should be ordered in the results, enabling systematic analysis and prioritization of errors based on various criteria.
Member Of
templateErrorLogs
query