GetAssigneeInput

Input for retrieving workflow assignee information

Audience: Programmer

Input type for the workflowAssignee query to retrieve the assignee of a specific workflow run.

Fields

Field
Type
Required
Description

workflowID

String!

Yes

The unique identifier of the workflow

workflowRunID

String!

Yes

The specific run ID of the workflow execution

Usage

This input type is used with the workflowAssignee query to retrieve assignee information from a workflow's search attributes in Temporal.

Example

query GetWorkflowAssignee {
  workflowAssignee(input: {
    workflowID: "order-processing-workflow-123"
    workflowRunID: "run-456-xyz"
  }) {
    assignee
  }
}

Validation

The query will validate that:

  • workflowID is not empty

  • workflowRunID is not empty

  • The workflow exists in the Temporal workflow engine

  • The caller has appropriate permissions to access the workflow

Service

This input type is defined in the workflow service.

Last updated

Was this helpful?