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; }>