We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab7af56 commit ea84797Copy full SHA for ea84797
cpp/gql/src/gql_cli/src/app/utils.cpp
@@ -328,7 +328,7 @@ loadOperationsMapContainerFromInputs(
328
localRegistry, (config::InputsConfig){ .graphql = pathsArray },
329
configDirPath);
330
if (!result.has_value()) {
331
- errors.append_range(result.error());
+ errors.insert(errors.end(), result.error().begin(), result.error().end());
332
continue;
333
}
334
schemas.emplace_back(result.value());
0 commit comments