| 21 | explicit CreateGraph(std::string graphName, bool isAny = false) |
| 22 | : GraphStatement{common::StatementType::CREATE_GRAPH, std::move(graphName)}, isAny{isAny} {} |
| 23 | bool isAnyGraph() const { return isAny; } |
| 24 | |
| 25 | private: |
| 26 | bool isAny = false; |
no outgoing calls
no test coverage detected