Skip to main content

UsePaginatedList

Returns the context for the paginated list data table. Must be used within a PaginatedListDataTable.

Example

Ts
const { refetchPaginatedList } = usePaginatedList();const mutation = useMutation({    mutationFn: api.mutate(updateFacetValueDocument),    onSuccess: () => {        refetchPaginatedList();    },});
Signature
function usePaginatedList(): void
Was this chapter helpful?
Report Issue
Edited Feb 2, 2026·Edit this page