Add clarification

This commit is contained in:
Ante Pušić 2024-01-22 10:28:01 +01:00
parent db3991db8f
commit 2ef9d81a63

View File

@ -2195,6 +2195,8 @@ class IndexQuery : public memgraph::query::Query {
enum class Action { CREATE, DROP };
// IndexQuery distinguishes two types of indices. Lookup indices (label and label & property) make it faster to look
// up nodes, whereas text indices enable text search.
enum class Type { LOOKUP, TEXT };
IndexQuery() = default;