My app uses CoreData & CloudKit mirroring. Some entities have attributes of type Transformable, corresponding e.g. to a property @NSManaged var names: Set<String>?.
In the xcdatamodeld file, the transformer is set to NSSecureUnarchiveFromDataTransformer.
Such fields are converted to NSData, and in the iCloud Dashboard they have type Bytes, i.e. the value is binary and cannot be interpreted. However, such fields can be downloaded.
Question: How can I view the content of such downloaded fields to check if it is correct?