Logos DX
    Preparing search index...

    Type Alias QueryResult<T, RH>

    type QueryResult<T, RH = Record<string, string>> = {
        cancel: () => void;
        data: T | null;
        failure: FetchFailure<T, RH> | null;
        loading: boolean;
        refetch: () => void;
    }

    Type Parameters

    Index

    Properties

    cancel: () => void
    data: T | null
    failure: FetchFailure<T, RH> | null
    loading: boolean
    refetch: () => void