Using the default movie graph I want to query for something along the lines of:
MATCH (n:Movie)
RETURN DISTINCT n.tagline UNION n.title
LIMIT 25
;
I want to obtain a DISTINCT
list of all the strings from the attributes tagline and title (not their combinations) but i.e. assuming there was a tagline foo
and a title foo
the output would only contain foo once.