Fix compile error due to wrong aggregate field name

This commit is contained in:
gvolfing 2023-02-01 12:36:27 +01:00
parent 4be4a86d0a
commit bf93b53e7d

View File

@ -667,7 +667,8 @@ class DistributedScanByPrimaryKeyCursor : public Cursor {
// TODO (gvolfing) figure out labels when relevant.
msgs::Vertex vertex = {.id = result.vertex, .labels = {}};
id_to_accessor_mapping_.emplace(result.vertex, VertexAccessor(std::move(vertex), std::move(result.properties), &request_router));
id_to_accessor_mapping_.emplace(result.vertex,
VertexAccessor(std::move(vertex), std::move(result.props), &request_router));
}
}