add extensions to ExecutionResult

This commit is contained in:
Ricardo Portugal 2017-11-04 18:13:02 +00:00
parent 718ba93da6
commit 5d0ec0027d

View File

@ -33,6 +33,7 @@ export interface ExecutionContext {
*/
export interface ExecutionResult {
data?: { [key: string]: any };
extensions?: { [key: string]: any };
errors?: GraphQLError[];
}