apoc.coll.sort Function apoc.coll.sort(coll [Any]) - sorts the given list into ascending order. Signature apoc.coll.sort(coll :: LIST? OF ANY?) :: (LIST? OF ANY?) Input parameters Name Type Default coll LIST? OF ANY? null Usage examples The following sorts a collection: RETURN apoc.coll.sort([5,4,2,3,1]) AS output; Table 1. Results Output [1, 2, 3, 4, 5] apoc.coll.shuffle apoc.coll.sortMaps Was this page helpful?