DataResult

Represents the processed result returned from a data operation. This structure is commonly used when working with DataManager or remote data sources to encapsulate the returned records, total count, and additional metadata.

Props

The following table outlines the props for the DataResult:

NameTypeDefaultDescription
count
number
-

Specifies the total number of records returned or available in the data source. This value is commonly used for pagination, virtual scrolling, or summary display.

results
Object[] | DataResult
-

Provides the collection of records returned from the data source. This can be an array of objects or a nested DataResult structure for grouped data.