<!-- Do not edit this file. It is automatically generated by API Documenter. --> [`BasesQueryResult`](BasesQueryResult) ## BasesQueryResult class The BasesQueryResult contains all of the available information from executing the bases query, applying filters, and evaluating formulas. The `data` or `groupedData` should be displayed by your view. 1.10.0 **Signature:** ```typescript export class BasesQueryResult ``` ## Properties | Property | Modifiers | Type | Description | | --- | --- | --- | --- | | [`data`](BasesQueryResult/data) | | [`BasesEntry`](BasesEntry)<code>[]</code> | <p>An ungrouped version of the data, with user-configured sort and limit applied. Where appropriate, views should support groupBy by using <code>groupedData</code> instead of this value.</p><p> 1.10.0</p> | | [`groupedData`](BasesQueryResult/groupedData) | <code>readonly</code> | [`BasesEntryGroup`](BasesEntryGroup)<code>[]</code> | <p>The data to be rendered, grouped according to the groupBy config. If there is no groupBy configured, returns a single group with an empty key.</p><p> 1.10.0</p> | | [`properties`](BasesQueryResult/properties) | <code>readonly</code> | [`BasesPropertyId`](BasesPropertyId)<code>[]</code> | <p>Visible properties defined by the user.</p><p> 1.10.0</p> | ## Methods | Method | Modifiers | Description | | --- | --- | --- | | [`getSummaryValue(queryController, entries, prop, summaryKey)`](BasesQueryResult/getSummaryValue) | | <p>Applies a summary function to a single property over a set of entries.</p><p> 1.10.0</p> |