Are there some examples of use with ErrorBoundary
?
This is what i can think of:
const { isError: isGetAError, error: getAError } = useGetAQuery()
if (isGetAError) {
throw getAError
}
const { isError: isGetBError, error: getBError } = useGetBQuery()
if (isGetBError) {
throw getBError
}