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:
David Glasser 2018-04-18 06:00:44 -07:00 committed by Jesse Rosenberger
parent 625bf7ba8e
commit cbb2b22570

View file

@ -13,7 +13,7 @@ import {
export interface HttpQueryRequest {
method: string;
query: string;
query: Record<string, any>;
options: GraphQLOptions | Function;
}