Reviewers: buda, teon.banek, florijan Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D389
19 lines
388 B
C++
19 lines
388 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "database/graph_db_accessor.hpp"
|
|
#include "query/typed_value.hpp"
|
|
|
|
namespace query {
|
|
|
|
namespace {
|
|
const char kStartsWith[] = "STARTSWITH";
|
|
const char kEndsWith[] = "ENDSWITH";
|
|
const char kContains[] = "CONTAINS";
|
|
}
|
|
|
|
std::function<TypedValue(const std::vector<TypedValue> &, GraphDbAccessor &)>
|
|
NameToFunction(const std::string &function_name);
|
|
}
|