I implemented the cloudkit function, where users can connect with each other. The problem is, that if User A is doing a friend request and User B is accepting the request. The friend entry is correct visible for User B but not for User A. I can see in cloud kit that after the accepted request, the friend connection is set up correctly, also with the correct userID, but it not showing up for User A (the one that send the request)
What kind of CloudKit database are you using? If it is publicCloudDatabase, all users using your app should by default be able to read the records. This is mentioned in Public and Private Databases.
If it is privateCloudDatabase, it is as-designed that only the database owner can access the data. To share a private database record among users, you need to implement a sharing flow, as demonstrated in Sharing Core Data objects between iCloud users.
Best,
——
Ziqiao Chen
Worldwide Developer Relations.