fields → schema (what data exists).rows → actual values.cursor → pagination.fields as the column headers in a database table."name" → the name of the field (like a column name)."type" → what kind of data goes in there (float, integer, string).sales_cost_price (float)order_counts (integer)rows is a record, where the values line up with the fields definition.38830 → sales_cost_price10894.53 → total_sales68 → order_countsrows is like the spreadsheet rows beneath the headers."current": 1 → you are on page 1."previous": null → no earlier page."next": null → no later page."count": 1 → total number of pages is 1.| sales_cost_price | total_sales | order_counts |
|---|---|---|
| 38830 | 10894.53 | 68 |