diff --git a/src/execution/execute.js b/src/execution/execute.js index 82ad3414ee..ddb7233561 100644 --- a/src/execution/execute.js +++ b/src/execution/execute.js @@ -598,13 +598,6 @@ function resolveField( result ); - if (isThenable(completed)) { - return ((completed: any): Promise).catch(error => { - error.executionPath = exePath; - return Promise.reject(error); - }); - } - return completed; }