Skip to content

Commit

Permalink
fix: missing return type
Browse files Browse the repository at this point in the history
  • Loading branch information
jackmellis committed Jul 12, 2024
1 parent 19235b5 commit e655d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/query/src/queryGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async function queryGraph<Q extends QueryBase<any, any>>(
query: Q;
sendQuery?: Query;
}
): Promise<unknown>;
): Promise<Q['__r']>;
async function queryGraph<T>(
args: SendQueryArgs & {
url: string | string[];
Expand Down

0 comments on commit e655d64

Please sign in to comment.