targetLongList = sourceLongList.stream() .filter(l -> l > 100) .collect(Collectors.toList());
targetLongList =
sourceLongList.stream().
filter(l -> l > 100).
collect(Collectors.toCollection(ArrayList::new))
targetLongList = sourceLongList.stream() .filter(l -> l > 100) .collect(Collectors.toList());
targetLongList =
sourceLongList.stream().
filter(l -> l > 100).
collect(Collectors.toCollection(ArrayList::new))
RETURN n;
START n=node(*) MATCH (n)-[r]->(m) RETURN n,r,m;