I have 3 records types which contained attributes like this :
Client
Username : String
ProfilImage : UIImage
Comment
User : Client Reference
Message : String
Shop
Comments : Comment Reference List
Can I fetch the client Username and ProfilImage from a Shop CKRecord object ? Can I do this path :
- Fetch the comments references from a Record of Shop
- Fetch the user reference from each comment reference found
- And finally fetch the username and profil from the user reference of comment reference of shop record
If there's a path, what's the best way to do this ?