We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9505d83 commit 8bf5f5dCopy full SHA for 8bf5f5d
include/graphqlservice/GraphQLService.h
@@ -1485,14 +1485,7 @@ struct ModifiedResult
1485
try
1486
{
1487
co_await params.launch;
1488
- auto value = pendingResolver(co_await result, params);
1489
-
1490
- document.data.splice(document.data.end(), std::move(value.data));
1491
1492
- if (!value.errors.empty())
1493
- {
1494
- document.errors.splice(document.errors.end(), std::move(value.errors));
1495
- }
+ document = pendingResolver(co_await result, params);
1496
}
1497
catch (schema_exception& scx)
1498
0 commit comments