Interface FetchPreviousPageOptions

interface FetchPreviousPageOptions {
    cancelRefetch?: boolean;
    throwOnError?: boolean;
}

Hierarchy (view full)

Properties

cancelRefetch?: boolean

If set to true, calling fetchPreviousPage repeatedly will invoke queryFn every time, whether the previous invocation has resolved or not. Also, the result from previous invocations will be ignored.

If set to false, calling fetchPreviousPage repeatedly won't have any effect until the first invocation has resolved.

Defaults to true.

throwOnError?: boolean