memgraph/include/storage/model/vertex_model.hpp
Kruno Tomola Fabro 8a89f6601d EdgeType indexes added.
Implemented untested UniqueOrderedIndex.

Introduced TypeGroupEdge/Vertex into database.

Added Index capabilityes to PropertyFamily.
Added method for adding index.
Added method for removing index.
2016-08-25 15:29:45 +01:00

15 lines
315 B
C++

#pragma once
#include "storage/label/label_collection.hpp"
#include "storage/model/edge_list.hpp"
#include "storage/model/edge_map.hpp"
#include "storage/model/property_model.hpp"
class VertexModel : public PropertyModel<TypeGroupVertex>
{
public:
EdgeList out;
EdgeMap in;
LabelCollection labels;
};