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?
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?
