Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
|
raw
history blame
428 Bytes
metadata
id: query-functions
title: Query Functions
ref: docs/framework/react/guides/query-functions.md
const result = useQuery({
  queryKey: ['todos', { status, page }],
  queryFn: fetchTodoList,
})

// Access the key, status and page variables in your query function!
function fetchTodoList({ queryKey }) {
  const [_key, { status, page }] = queryKey
  return new Promise()
}