mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 10:11:40 -05:00
apollo-server-core: run http options allows query to be an array
This commit is contained in:
parent
acae63cd4b
commit
9099948e5c
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ import { formatApolloErrors } from './errors';
|
||||||
|
|
||||||
export interface HttpQueryRequest {
|
export interface HttpQueryRequest {
|
||||||
method: string;
|
method: string;
|
||||||
query: Record<string, any>;
|
query: Record<string, any> | Array<Record<string, any>>;
|
||||||
options: GraphQLOptions | (() => Promise<GraphQLOptions> | GraphQLOptions);
|
options: GraphQLOptions | (() => Promise<GraphQLOptions> | GraphQLOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue