memgraph/include/query_engine/code_generator/query_action.hpp
2016-08-10 09:39:02 +01:00

17 lines
283 B
C++

#pragma once
#include <cstdint>
// any entity (node or relationship) inside cypher query has an action
// that is associated with that entity
enum class QueryAction : uint32_t
{
TransactionBegin,
Create,
Match,
Set,
Return,
Delete,
TransactionCommit
};