apoc.coll.fill
Function APOC Core
apoc.coll.fill(item, count) - returns a list with the given count of items
Usage Examples
The following returns a list containing 2 lists with the contents abc
:
RETURN apoc.coll.fill('abc', 2) as output;
Output |
---|
["abc", "abc"] |
Was this page helpful?