GetAssigneeResponse

Response containing workflow assignee information

Audience: Programmer

Response type returned by the workflowAssignee query containing the assignee information for a workflow run.

Fields

Field
Type
Required
Description

assignee

String!

Yes

The ID of the user assigned to this workflow run

Description

This type represents the response from querying a workflow's assignee. The assignee value is retrieved from the workflow's search attributes in Temporal under the key pyck_workflow_assignee.

Example Response

{
  "data": {
    "workflowAssignee": {
      "assignee": "user-12345"
    }
  }
}

Empty Assignee

If no assignee is set for the workflow, the field returns an empty string:

Notes

  • The assignee ID typically corresponds to a user in the system's identity management (Zitadel)

  • The assignee can be set or updated using the setWorkflowAssignee mutation

  • An empty string indicates no assignee is currently assigned to the workflow

Service

This type is defined in the workflow service as part of the federated GraphQL schema.

Last updated

Was this helpful?