How do I create an NSPredicate object to be used with CKQuery to retrieve all records with all fields except for one field? I need to exclude the field because it is a large chunk of data?
How do I retrieve records, excluding a field?
Instead of create a property for this field in the CKRecord, create a CKReference.
I created anyother recordtype for the large datum. Do I make the reference in the first recordtype to the recordName field in the second recordtype?
What I do is:
childRecord.setObject(parentName as CKRecordValue?, forKey: "parentName")
Ok. Thanks.