From 5d0ec0027d4dd13a476fbcffa12e2d01b96980a3 Mon Sep 17 00:00:00 2001 From: Ricardo Portugal Date: Sat, 4 Nov 2017 18:13:02 +0000 Subject: [PATCH] add extensions to ExecutionResult --- types/graphql/execution/execute.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/graphql/execution/execute.d.ts b/types/graphql/execution/execute.d.ts index 6d02b82124..d63a7f93a7 100644 --- a/types/graphql/execution/execute.d.ts +++ b/types/graphql/execution/execute.d.ts @@ -33,6 +33,7 @@ export interface ExecutionContext { */ export interface ExecutionResult { data?: { [key: string]: any }; + extensions?: { [key: string]: any }; errors?: GraphQLError[]; }