apoc.coll.shuffle Function apoc.coll.shuffle(coll [Any]) - returns the list shuffled. Signature apoc.coll.shuffle(coll :: LIST? OF ANY?) :: (LIST? OF ANY?) Input parameters Name Type Default coll LIST? OF ANY? null Usage examples The following shuffles a list: RETURN apoc.coll.shuffle([1,3,5,7,9]) AS output; Table 1. Results Output [7, 5, 9, 3, 1] apoc.coll.set apoc.coll.sort Was this page helpful?