githubEdit

object-groupWorkflowExecutionHistoryConnection

WorkflowExecutionHistoryConnection Type - Paginated workflow history results

Audience: Programmer

A connection type for paginated access to workflow execution history. This type follows the Relay connection specification and is returned by the workflowHistory query.

Fields

Field
Type
Description

edges

[WorkflowExecutionHistoryEdge!]!

List of workflow execution history edges

pageInfo

WorkflowPageInfo!

Information for pagination

totalCount

Int!

Total number of matching workflow executions

WorkflowExecutionHistoryEdge

Field
Type
Description

node

WorkflowExecutionHistory!

The workflow execution with its history

cursor

String!

Cursor for use in pagination

WorkflowPageInfo

Field
Type
Description

hasNextPage

Boolean!

Whether there are more items after this page

hasPreviousPage

Boolean!

Whether there are more items before this page

startCursor

String

Cursor of the first item

endCursor

String

Cursor of the last item

Service

This type is defined in the Workflow service.

Usage Example

Query with Pagination

Example Response

Notes

  • This connection type wraps WorkflowExecutionHistory objects

  • The limit parameter on workflowHistory controls the number of executions returned

  • Each execution includes its complete history (no pagination within an execution's history)

  • Use totalCount to determine the total number of matching executions

Last updated

Was this helpful?