Skip to main content

Function: templateErrorLogService()

templateErrorLogService(client): object

Defined in: service/TemplateErrorLogService.ts:16

Factory for template-error-log GraphQL operations. Retrieval, paginated search, and statistical summaries for monitoring and debugging templates.

Parameters

client

GraphQLClient

Returns

getTemplateErrorLog()

getTemplateErrorLog(id): Promise<TemplateErrorLog>

Retrieve a specific template error log by ID.

Parameters

id

string

Unique identifier for the error log

Returns

Promise<TemplateErrorLog>

getTemplateErrorLogStats()

getTemplateErrorLogStats(): Promise<TemplateErrorLogStats>

Retrieve a statistical summary of template error logs.

Returns

Promise<TemplateErrorLogStats>

searchTemplateErrorLogs()

searchTemplateErrorLogs(input): Promise<TemplateErrorLogResponse>

Search for template error logs with filtering and pagination.

Parameters

input

TemplateErrorLogSearchInput

Search criteria and pagination parameters

Returns

Promise<TemplateErrorLogResponse>