Skip to content

Commit 56d2ba0

Browse files
committed
add third argument to addPath
1 parent 3340bf4 commit 56d2ba0

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
@@ -930,7 +930,7 @@ function completeAsyncIteratorValue(
930930
completedResults: Array<mixed>,
931931
iterator: AsyncIterator<mixed>,
932932
): Promise<$ReadOnlyArray<mixed>> {
933-
const fieldPath = addPath(path, index);
933+
const fieldPath = addPath(path, index, undefined);
934934
return iterator.next().then(
935935
({ value, done }) => {
936936
if (done) {

0 commit comments

Comments
 (0)