Question about saving Data with SwiftData and CloudKit

My app is using SwiftData with CloudKit integration. Everything at the moment is working fine. I have a struct that saves Data as an optional. This is Data related to an Image. It saves and loads as expected. When I disconnect my phone from wifi or my phone network, the image still loads. I'm assuming that means the Data is being stored locally on the phone as well. Is there a way to display what's stored locally to the user inside the application?

Edit: I've realized that CloudKit is saying the data is too large, but the images are still being saved. Does that mean they're only locally being saved?

How big are these images? Can you reduce the file size before you store them?

Does this help? https://stackoverflow.com/questions/63711140/querying-cloud-kit-core-data-record

Question about saving Data with SwiftData and CloudKit
 
 
Q