File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ const result = useQuery({
6060- ` queryKey: string | unknown[]`
6161 - **Required**
6262 - The query key to use for this query.
63- - The query key will be hashed into a stable hash. See [Query Keys](./guides/query-keys) for more information.
63+ - The query key will be hashed into a stable hash. See [Query Keys](.. /guides/query-keys) for more information.
6464 - The query will automatically update when this key changes (as long as ` enabled` is not set to ` false ` ).
6565- ` queryFn : (context : QueryFunctionContext ) => Promise < TData> `
6666 - **Required, but only if no default query function has been defined**
@@ -70,7 +70,7 @@ const result = useQuery({
7070 - Must return a promise that will either resolves data or throws an error.
7171- ` enabled: boolean`
7272 - Set this to ` false ` to disable this query from automatically running.
73- - Can be used for [Dependent Queries](./guides/queries# dependent-queries).
73+ - Can be used for [Dependent Queries](.. /guides/dependent-queries).
7474- ` retry: boolean | number | (failureCount : number , error : TError ) => boolean`
7575 - If ` false ` , failed queries will not retry by default.
7676 - If ` true ` , failed queries will retry infinitely.
You can’t perform that action at this time.
0 commit comments