Logos DX
    Preparing search index...

    Type Alias QueryResult<T>

    type QueryResult<T> = {
        cancel: () => void;
        data: T | null;
        error: FetchError | null;
        loading: boolean;
        refetch: () => void;
    }

    Type Parameters

    • T
    Index

    Properties

    cancel: () => void
    data: T | null
    error: FetchError | null
    loading: boolean
    refetch: () => void