I am doing a CKQuery
like this in Swift 4:
CKQuery(recordType: package.recordType, predicate:
NSPredicate(format: "NOT (recordName IN %@)", package.recordNames as CVarArg))
...and I'm getting this CKError
:
CKError(_nsError: CKError 0x60000024dce0: "Server Rejected Request" (15/2000); server message = "Unknown field 'recordName'"; uuid = BCD7C8DA-04B0-4422-8A24-F6479D234706; container ID = "...")
Is there a special key to use when querying against the recordName
?
After digging some more, I discovered that you cannot query by the
recordName
directly, but you can query by therecordID
. So instead of comparing an array of strings, you have to build an array ofCKRecordID
s and query like this:I hope that helps someone else.