mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 10:11:40 -05:00
core: fix HttpQueryRequest typing (#834)
This field generally gets used in `any` contexts, so the error didn't cause any compilation failures.
This commit is contained in:
parent
625bf7ba8e
commit
cbb2b22570
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ import {
|
|||
|
||||
export interface HttpQueryRequest {
|
||||
method: string;
|
||||
query: string;
|
||||
query: Record<string, any>;
|
||||
options: GraphQLOptions | Function;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue