function shouldThrowError<T>(throwOnError, params): boolean;Defined in: packages/query-core/src/utils.ts:576
Resolves a throwOnError option to a boolean. If throwOnError is a function, it is called with params (e.g. the error and, depending on the caller, additional context such as the query or mutation) and its result is returned, allowing the throwing behavior to be decided per error. Otherwise, throwOnError itself is coerced to a boolean (undefined resolves to false).
T extends (...args) => boolean
boolean | T | undefined
Parameters<T>
boolean
const throwOnError =
query.state.error && typeof options.throwOnError === 'function'
? shouldThrowError(options.throwOnError, [query.state.error, query])
: options.throwOnError