From 8526e7961980512a5f7eb27efe0cd68d1556b061 Mon Sep 17 00:00:00 2001 From: Teon Banek <teon.banek@memgraph.io> Date: Fri, 22 Dec 2017 14:48:00 +0100 Subject: [PATCH] Remove Union from Upcoming Features Reviewers: buda Reviewed By: buda Differential Revision: https://phabricator.memgraph.io/D1083 --- docs/user_technical/upcoming-features.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docs/user_technical/upcoming-features.md b/docs/user_technical/upcoming-features.md index e9e6399f7..4bc6a55a6 100644 --- a/docs/user_technical/upcoming-features.md +++ b/docs/user_technical/upcoming-features.md @@ -34,15 +34,6 @@ implemented features like paths, while some may use the features Memgraph already supports. Out of the remaining functions, some are more useful than others and as such they will be supported sooner. -#### UNION - -The `UNION` clause will offer joining the results from multiple queries. For -example, finding names of `:Person` and `:Car` names. - - MATCH (p :Person) RETURN p.name AS name - UNION - MATCH (c :Car) RETURN c.name AS name - #### List Comprehensions List comprehensions are similar to the supported `collect` function, which