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
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:
workflowIDis not emptyworkflowRunIDis not emptyThe workflow exists in the Temporal workflow engine
The caller has appropriate permissions to access the workflow
Related
Query: workflowAssignee
Type: GetAssigneeResponse
Service
This input type is defined in the workflow service.
Last updated
Was this helpful?
