| 325 | } |
| 326 | |
| 327 | std::vector<std::shared_ptr<RelExpression>> QueryGraphCollection::getQueryRels() const { |
| 328 | std::vector<std::shared_ptr<RelExpression>> result; |
| 329 | for (auto& queryGraph : queryGraphs) { |
| 330 | for (auto& rel : queryGraph.getQueryRels()) { |
| 331 | result.push_back(rel); |
| 332 | } |
| 333 | } |
| 334 | return result; |
| 335 | } |
| 336 | |
| 337 | } // namespace binder |
| 338 | } // namespace lbug |
no test coverage detected