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.
1 parent 6c307fb commit c1a916cCopy full SHA for c1a916c
src/useFind.ts
@@ -103,7 +103,7 @@ export default function find(options: UseFindOptions): UseFindData {
103
const skip = getterParams.query.$skip || defaultSkip
104
const limit = getterParams.query.$limit || defaultLimit
105
const pagination =
106
- computes.paginationData[getterParams.qid || state.qid] || {}
+ computes.paginationData.value[getterParams.qid || state.qid] || {}
107
const response = skip != null && limit != null ? { limit, skip } : {}
108
const queryInfo = getQueryInfo(getterParams, response)
109
const items = getItemsFromQueryInfo(
0 commit comments