Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/src/hooks/accessControl/useCan/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export type UseCanProps = CanParams & {
};

/**
* `useCan` uses the `can` as the query function for `react-query`'s {@link https://react-query.tanstack.com/guides/queries `useQuery`}. It takes the parameters that `can` takes. It can also be configured with `queryOptions` for `useQuery`. Returns the result of `useQuery`.
* `useCan` uses the `can` as the query function for `react-query`'s {@link https://tanstack.com/query/v4/docs/framework/react/guides/queries `useQuery`}. It takes the parameters that `can` takes. It can also be configured with `queryOptions` for `useQuery`. Returns the result of `useQuery`.
* @see {@link https://refine.dev/docs/api-reference/core/hooks/accessControl/useCan} for more details.
*
* @typeParam CanParams {@link https://refine.dev/docs/core/interfaceReferences#canparams}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/hooks/data/useCustom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export type UseCustomProps<TQueryFnData, TError, TQuery, TPayload, TData> = {
UseLoadingOvertimeOptionsProps;

/**
* `useCustom` is a modified version of `react-query`'s {@link https://react-query.tanstack.com/guides/queries `useQuery`} used for custom requests.
* `useCustom` is a modified version of `react-query`'s {@link https://tanstack.com/query/v4/docs/framework/react/guides/queries `useQuery`} used for custom requests.
*
* It uses the `custom` method from the `dataProvider` which is passed to `<Refine>`.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/hooks/data/useList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export type UseListProps<TQueryFnData, TError, TData> = {
UseLoadingOvertimeOptionsProps;

/**
* `useList` is a modified version of `react-query`'s {@link https://react-query.tanstack.com/guides/queries `useQuery`} used for retrieving items from a `resource` with pagination, sort, and filter configurations.
* `useList` is a modified version of `react-query`'s {@link https://tanstack.com/query/v4/docs/framework/react/guides/queries `useQuery`} used for retrieving items from a `resource` with pagination, sort, and filter configurations.
*
* It uses the `getList` method as the query function from the `dataProvider` which is passed to `<Refine>`.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/hooks/data/useMany.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export type UseManyProps<TQueryFnData, TError, TData> = {
UseLoadingOvertimeOptionsProps;

/**
* `useMany` is a modified version of `react-query`'s {@link https://react-query.tanstack.com/guides/queries `useQuery`} used for retrieving multiple items from a `resource`.
* `useMany` is a modified version of `react-query`'s {@link https://tanstack.com/query/v4/docs/framework/react/guides/queries `useQuery`} used for retrieving multiple items from a `resource`.
*
* It uses `getMany` method as query function from the `dataProvider` which is passed to `<Refine>`.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/hooks/data/useOne.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export type UseOneProps<TQueryFnData, TError, TData> = {
UseLoadingOvertimeOptionsProps;

/**
* `useOne` is a modified version of `react-query`'s {@link https://react-query.tanstack.com/guides/queries `useQuery`} used for retrieving single items from a `resource`.
* `useOne` is a modified version of `react-query`'s {@link https://tanstack.com/query/v4/docs/framework/react/guides/queries `useQuery`} used for retrieving single items from a `resource`.
*
* It uses `getOne` method as query function from the `dataProvider` which is passed to `<Refine>`.
*
Expand Down
Loading