We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
useQuery
1 parent 09d907e commit e8e1a0aCopy full SHA for e8e1a0a
docs/src/pages/guides/query-functions.md
@@ -8,6 +8,7 @@ A query function can be literally any function that **returns a promise**. The p
8
All of the following are valid query function configurations:
9
10
```js
11
+useQuery(['todos'], fetchAllTodos)
12
useQuery(['todos', todoId], () => fetchTodoById(todoId))
13
useQuery(['todos', todoId], async () => {
14
const data = await fetchTodoById(todoId)
0 commit comments