Skip to content

Commit bc704f9

Browse files
committed
add third argument to addPath
1 parent b294582 commit bc704f9

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

0 commit comments

Comments
 (0)