Arc.React
    Preparing search index...

    Interface QueryErrorInfo

    Render props passed to the fallback or onError callbacks.

    interface QueryErrorInfo {
        error: Error;
        isQueryFailed: boolean;
        isQueryUnauthorized: boolean;
        reset(): void;
    }
    Index

    Properties

    error: Error

    The raw error that was caught.

    isQueryFailed: boolean

    true when the error is a QueryFailed.

    isQueryUnauthorized: boolean

    true when the error is a QueryUnauthorized.

    Methods