Skip to main content

TemplateErrorLogResponse

Paginated response containing template error log search results.

Provides comprehensive error log data with pagination metadata for efficient error analysis, debugging workflows, and systematic monitoring of template processing issues.

type TemplateErrorLogResponse {
items: [TemplateErrorLog!]!
itemsFound: Int!
page: Int!
offset: Int!
pages: Int!
start: Int!
end: Int!
}

Fields

TemplateErrorLogResponse.items ● [TemplateErrorLog!]! non-null object

Array of template error log entries.

Collection of error log records matching the search criteria, containing detailed information about template processing failures for debugging and analysis.

TemplateErrorLogResponse.itemsFound ● Int! non-null scalar

Total count of error logs matching search criteria.

Complete number of error log entries that match the applied filters, regardless of pagination, useful for understanding the scope of issues.

TemplateErrorLogResponse.page ● Int! non-null scalar

Current page number in the result set.

Indicates which page of results is currently being returned, enabling navigation through large error log datasets.

TemplateErrorLogResponse.offset ● Int! non-null scalar

Number of error log items per page.

Specifies how many error log entries are included in each page of results, controlling the pagination size for optimal performance.

TemplateErrorLogResponse.pages ● Int! non-null scalar

Total number of pages available.

Calculated total pages based on the number of items found and items per page, enabling complete pagination navigation.

TemplateErrorLogResponse.start ● Int! non-null scalar

Starting item number for the current page.

Indicates the position of the first item in the current page within the complete result set, useful for result positioning.

TemplateErrorLogResponse.end ● Int! non-null scalar

Ending item number for the current page.

Indicates the position of the last item in the current page within the complete result set, useful for result positioning.

Returned By

templateErrorLogs query