memgraph/include/query_engine/code_generator/clause_action.hpp

22 lines
341 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
};