| 110 | } |
| 111 | |
| 112 | std::string InsertDatasetByRow::NodeTableInfo::getLoadFromQuery() const { |
| 113 | const auto header = getHeaderForLoad(); |
| 114 | const auto body = getBodyForLoad(); |
| 115 | return std::format("LOAD WITH HEADERS ({}) FROM {} CREATE (:{} {{{}}});", header, filePath, |
| 116 | name, body); |
| 117 | } |
| 118 | |
| 119 | std::string InsertDatasetByRow::RelTableInfo::getLoadFromQuery() const { |
| 120 | auto header = std::format("aid_ {},bid_ {}", from.type, to.type); |