incredible-moccasinI
Refine2y ago
3 replies
incredible-moccasin

uselist pagination disable

Using useList, with code like the following

const { data: _all_resource_data, isLoading, isError } = useList<IBaseElement, HttpError>({
//resource: resource.name,
resource: "order-items",
pagination: {
pageSize: 999,
//mode: "off",
},
});


how can i disable completely pagination and get all the results from the provider withouth pagination at all?
Was this page helpful?