Skip to main content
Version: 4.xx.xx

useLogList

If you need to list audit log events, you can use the useLogList hook of Refine, which uses the get method from auditLogProvider under the hood.

Usage

import { useLogList } from "@refinedev/core";

const postAuditLogResults = useLogList({
resource: "posts",
});

API Reference

Properties

PropertyTypeDefault
resource
stringAction that it reads from route
actionstring
authorRecord<string, any>
metaRecord<string, any>
metaDataMetaDataQuery
queryOptionsUseQueryOptions<TQueryFnData, TError, TData>

Type Parameters

PropertyDescriptionTypeDefault
TQueryFnDataResult data returned by the query function. Extends BaseRecordBaseRecordBaseRecord
TErrorCustom error object that extends HttpErrorHttpErrorHttpError
TDataResult data returned by the select function. Extends BaseRecord. If not specified, the value of TQueryFnData will be used as the default value.BaseRecordTQueryFnData

Return values

DescriptionType
Result of the react-query's useQueryUseQueryResult<{ data: TData; }>