Eventjet GraphQL API documentation

ReportLine

Object

A single data row in a Report.

Each line corresponds to one record in the result set (or one aggregation group when the report is grouped). Use cells to access the values — one cell per column in the same order as Report.columnsV2. The links field provides contextual navigation links for the row (for example, a link to the order detail page).

Fields

FieldDescriptionType
cellsAll cells of the line in the same order as `Report.columnsV2`. Each `ReportCell` contains a value, type hints, and an optional localized label.[ ReportCell ]
labelsLocalized display names for each cell's value, in the same order as `cells`. Deprecated — use `ReportCell.label` via `cells` instead.[ String ]
linksContextual navigation links for this row, such as a link to the order or attendee detail page.[ Link ]
valuesRaw string values for each column, in the same order as `cells`. Deprecated — use `ReportCell.value` via `cells` instead.[ String ]