`Queries handle 5000 results without any paging` ?...
# suitescript
d
Queries handle 5000 results without any paging
???? What happens if you have 10000 results?
s
Yeah you dont need paging unless there are over 5k. The page size in the runPaged call is still 1k, though.
e
Right, if you have 10k you page.
run()
for Queries returns 5k instead of 4k in Search
👍 1
s
I tend to find myself just paging no matter what rather than trying to check the result count first.
s
I find myself using NFT for this and never thinking about it. Though the new SuiteQL is an interesting change.