memgraph/cypher/ast/queries.hpp

23 lines
380 B
C++
Raw Normal View History

#ifndef MEMGRAPH_CYPHER_AST_QUERIES_HPP
#define MEMGRAPH_CYPHER_AST_QUERIES_HPP
#include "ast_node.hpp"
#include "match.hpp"
#include "return.hpp"
namespace ast
{
struct ReadQuery : public AstNode<ReadQuery>
{
ReadQuery(Match* match, ReturnList* return_list)
: match(match), return_list(return_list) {}
Match* match;
ReturnList* return_list;
};
}
#endif