Skip to content

API Documentation / @pinia/colada / UseInfiniteQueryData

Interface: UseInfiniteQueryData<TData, TPageParam> ​

Structure of data stored for infinite queries.

Type Parameters ​

TData ​

TData

TPageParam ​

TPageParam

Properties ​

pageParams ​

ts
pageParams: TPageParam[];

Each page parameter used to fetch the corresponding page in the same order.


pages ​

ts
pages: TData[];

Each page of data fetched in order.

Released under the MIT License.