Libraries
    Preparing search index...

    Type Alias QueryHookOptions<TData>

    QueryHookOptions: Omit<
        UseQueryOptions<TData, WebError, TData, QueryKey>,
        "queryKey" | "queryFn",
    >

    Options for useQuery hooks, with queryKey and queryFn managed automatically by the library.

    Type Parameters

    • TData

      The endpoint's success response type.