Skip to content

Commit a33dcf7

Browse files
committed
fix: Allow queryKey to be optional
1 parent aef9440 commit a33dcf7

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

packages/react/src/data-connect/useConnectQuery.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import { useQuery, type UseQueryOptions } from "@tanstack/react-query";
22
import { type FirebaseError } from "firebase/app";
3+
import type { PartialBy } from "../../utils";
34
import {
45
type QueryRef,
56
type QueryResult,
67
executeQuery,
78
} from "firebase/data-connect";
89

9-
type UseConnectQueryOptions<TData = unknown, TError = FirebaseError> = Omit<
10-
UseQueryOptions<TData, TError>,
11-
"queryFn"
12-
>;
10+
type UseConnectQueryOptions<
11+
TData = unknown,
12+
TError = FirebaseError
13+
> = PartialBy<Omit<UseQueryOptions<TData, TError>, "queryFn">, "queryKey">;
1314

1415
export function useConnectQuery<
1516
Data extends Record<string, any>,

packages/react/utils.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ const wrapper = ({ children }: { children: ReactNode }) => (
1717
);
1818

1919
export { wrapper, queryClient };
20+
21+
// Helper type to make some properties of a type optional.
22+
export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;

0 commit comments

Comments
 (0)