Skip to content

Commit 1ff8a36

Browse files
committed
add third argument to addPath
1 parent 09caa9a commit 1ff8a36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/execution/execute.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ function completeAsyncIteratorValue(
866866
completedResults: Array<mixed>,
867867
iterator: AsyncIterator<mixed>,
868868
): Promise<$ReadOnlyArray<mixed>> {
869-
const fieldPath = addPath(path, index);
869+
const fieldPath = addPath(path, index, undefined);
870870
return iterator.next().then(
871871
({ value, done }) => {
872872
if (done) {

0 commit comments

Comments
 (0)