From 56d2ba0da00e6d8b4f6d1614efc8b378f53eaf97 Mon Sep 17 00:00:00 2001 From: Rob Richard Date: Wed, 15 Jul 2020 17:15:52 -0400 Subject: [PATCH] add third argument to addPath --- src/execution/execute.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/execution/execute.js b/src/execution/execute.js index 1ad08737036..1865f181492 100644 --- a/src/execution/execute.js +++ b/src/execution/execute.js @@ -930,7 +930,7 @@ function completeAsyncIteratorValue( completedResults: Array, iterator: AsyncIterator, ): Promise<$ReadOnlyArray> { - const fieldPath = addPath(path, index); + const fieldPath = addPath(path, index, undefined); return iterator.next().then( ({ value, done }) => { if (done) {