I intensively use the Neo4j Cypher Pattern comprehension, for example:
[(jobable)-[vg1:HAS_VOTE_ON]->(c1:Criterion)<-[:HAS_VOTE_ON]-(childD) | {criterion: c1, relationship: vg1} ] AS jobableWeightedCriterion
and realized that the returned data from the Pattern comprehension query could be quite big. Is it possible to control the amount of the data returned from the Pattern comprehension part of the query.. for example something like SKIP/LIMIT ?