interface GridGetRowsParams {
    end: number;
    filterModel: GridFilterModel;
    groupFields?: string[];
    groupKeys?: string[];
    paginationModel: GridPaginationModel;
    sortModel: GridSortModel;
    start: string | number;
}

Properties

end: number

Last row index to fetch.

filterModel: GridFilterModel
groupFields?: string[]

List of grouped columns (only applicable with rowGrouping).

groupKeys?: string[]

Array of keys returned by getGroupKey of all the parent rows until the row for which the data is requested getGroupKey prop must be implemented to use this. Useful for treeData and rowGrouping only.

paginationModel: GridPaginationModel

Alternate to start and end, maps to GridPaginationModel interface.

sortModel: GridSortModel
start: string | number

First row index to fetch (number) or cursor information (number | string).