What would be the max figure for resultLimit
? I'm coming from parse.com so i'm used to using batch downloads that would comfortably pull 1000 rows of data at once when this would count as one request call.
What kind of limitations are there in terms of CKQueryOperation
?
Thanks in advance!
Asked
Active
Viewed 175 times
2

stevekohls
- 2,214
- 23
- 29

shle2821
- 1,856
- 1
- 19
- 26
1 Answers
1
From the Apple documentation, you can use CKQueryOperationMaximumResults
, however the docs do state:
The actual maximum value is determined dynamically by the server based on various conditions.
And also:
This constant is the default value assigned to the
resultsLimit
property.
Hope this helps!

stevekohls
- 2,214
- 23
- 29
-
Yea with parse there seemed have been a definitive answer to these questions but i guess w ck its less definitive. Thank you sir – shle2821 Mar 14 '16 at 14:13
-
1I think the ball park number is 100, yes just 100. – user3069232 Mar 15 '16 at 14:07
-
Does anyone have any experience trying to query and fetch for large data like 1k rows repeatedly? – shle2821 Mar 16 '16 at 05:49