I have 2400 records that I added into CloudKit I was wondering if there is a way to fetch the data in a paged manner.
This is the code I have for returning the records. This works but only returns 100 results.
CKQuery * playerQuery = [[CKQuery alloc] initWithRecordType:@"Player" predicate:[NSPredicate predicateWithFormat:@"TRUEPREDICATE"]];
is there a way to change where the predicate starts from I saw some documentation saying I could use [FIRST] or something but I can find and examples and I am getting a parse error. I also tried to use @count.