apollo-server-core: run http options allows query to be an array

This commit is contained in:
Evans Hauser 2018-05-08 11:39:53 -07:00
parent acae63cd4b
commit 9099948e5c
No known key found for this signature in database
GPG key ID: 88AF586817F52EEC

View file

@ -8,7 +8,7 @@ import { formatApolloErrors } from './errors';
export interface HttpQueryRequest {
method: string;
query: Record<string, any>;
query: Record<string, any> | Array<Record<string, any>>;
options: GraphQLOptions | (() => Promise<GraphQLOptions> | GraphQLOptions);
}