I'm having some issues with a fairly complex query, which is using UNION combined with a SKIP / LIMIT for paging.
The problem is that given a query like this: MATCH RETURN ORDER BY UNION MATCH RETURN ORDER BY SKIP 5 LIMIT 5 The skip and limit will apply only to the latter match query, and not the entire result set of the union, which is what I'm after. Am I missing something obvious? In SQL I'd wrap brackets around the entire union, but Cypher won't accept that. Many thanks -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
