Skip to content
View as Markdown

IssueGroupQuery

Source definition: src/bitdrift/public/unary/issues/v1/issues.proto#L111-L122

Limits what issue groups are being queried for an endpoint.

Field Type Description
assignee array of bitdrift.public.unary.common.v1.Owner
up to 100 items
The assignee(s) of an issue group to filter by.
issue_group_status array of bitdrift.public.unary.issues.v1.IssueGroupStatus
up to 100 items, items must be defined enum values
The status(es) of issue groups to filter by.

Example

JSON
{
  "assignee": [
    {
      "email": "user@example.com",
      "id": "usr_abc123",
      "name": "Jane Doe"
    }
  ],
  "issue_group_status": [
    "NEW"
  ]
}