Skip to content

Commit

Permalink
add third argument to addPath
Browse files Browse the repository at this point in the history
  • Loading branch information
robrichard committed Jul 15, 2020
1 parent b294582 commit bc704f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/execution/execute.js
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ function completeAsyncIteratorValue(
completedResults: Array<mixed>,
iterator: AsyncIterator<mixed>,
): Promise<$ReadOnlyArray<mixed>> {
const fieldPath = addPath(path, index);
const fieldPath = addPath(path, index, undefined);
return iterator.next().then(
({ value, done }) => {
if (done) {
Expand Down

0 comments on commit bc704f9

Please sign in to comment.