Update client query fetch to better determine whether pagination is supported or not
This commit is contained in:
parent
54ad2237ea
commit
e187e8f2b1
|
@ -6,8 +6,9 @@ import { get } from "svelte/store"
|
|||
export default class QueryFetch extends DataFetch {
|
||||
determineFeatureFlags(definition) {
|
||||
const supportsPagination =
|
||||
definition?.fields?.pagination?.type != null &&
|
||||
definition?.fields?.pagination?.pageParam != null
|
||||
!!definition?.fields?.pagination?.type &&
|
||||
!!definition?.fields?.pagination?.location &&
|
||||
!!definition?.fields?.pagination?.pageParam
|
||||
return { supportsPagination }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue