memgraph/include/query/backend/cpp_old/clause_action.hpp

27 lines
454 B
C++
Raw Normal View History

#pragma once
#include <cstdint>
enum class ClauseAction : uint32_t
{
Undefined,
CreateNode,
MatchNode,
UpdateNode,
DeleteNode,
CreateRelationship,
MatchRelationship,
UpdateRelationship,
DeleteRelationship,
ReturnNode,
ReturnRelationship,
ReturnPack,
2016-09-14 19:19:56 +08:00
ReturnProjection,
ReturnCount,
2016-11-04 08:49:21 +08:00
ReturnLabels,
UpdateEntityLabels,
UpdateEntityLabels_Identifier,
UpdateEntityLabels_Labels
};