Skip to content

Commit

Permalink
apollo-server-core: fix HttpQueryRequest typing
Browse files Browse the repository at this point in the history
This field generally gets used in `any` contexts, so the error didn't cause any compilation failures.
  • Loading branch information
glasser committed Feb 22, 2018
1 parent 5b90120 commit 68f5da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apollo-server-core/src/runHttpQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {

export interface HttpQueryRequest {
method: string;
query: string;
query: Record<string, any>;
options: GraphQLOptions | Function;
}

Expand Down

0 comments on commit 68f5da9

Please sign in to comment.