packers_performance_dashboard

Returns a paginated list of packer performance stats for a warehouse. All duration fields are returned in seconds. Results are ordered by score DESC by default.

Arguments

ArgumentTypeRequiredDefaultDescription
warehouse_idID!Yes

Public API warehouse ID.

date_fromISODateTimeNo

Inclusive start of the date range, in ISO-8601 datetime format.

date_toISODateTimeNo

Inclusive end of the date range, in ISO-8601 datetime format.

firstIntNo

Page size (workforce_hero cursor pagination).

cursorStringNo

Cursor returned by a previous page.

analyzeBooleanNo

If true, the query will only be analyzed (cost estimated) without executing it.

Return Type

PackersPerformanceDashboardResult

Query

query packers_performance_dashboard(
  $warehouse_id: ID!,
  $date_from: ISODateTime,
  $date_to: ISODateTime,
  $first: Int,
  $cursor: String,
  $analyze: Boolean
) {
  packers_performance_dashboard(
    warehouse_id: $warehouse_id,
    date_from: $date_from,
    date_to: $date_to,
    first: $first,
    cursor: $cursor,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...PackerPerformancePageFragment
    }
  }
}

Variables

{
  "warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
  "date_from": "2026-07-09T15:30:00Z",
  "date_to": "2026-07-09T15:30:00Z",
  "first": 50,
  "cursor": "eyJwYWdlIjoyfQ==",
  "analyze": true
}

Response

{
  "data": {
    "packers_performance_dashboard": {
      "request_id": "UmVjb3JkOjEyMzQ=",
      "complexity": 100,
      "data": {id: "UGFja2VyUGVyZm9ybWFuY2VQYWdlOjEyMzQ="}
    }
  }
}