Is there a limit to the length of an array passed ...
# suitescript
a
Is there a limit to the length of an array passed to the
anyof
in search? Meaning given the following
Copy code
var itemIds = [1,2,3,55,44,33]

... 
    filters : ['item', 'anyof', itemIds], 'AND',
...
Is there a limit to how big
itemIds
can be?