As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
How can I get all records saved by the current user?
E
Edward
started a topic
about 10 years ago
In my app all the users are saving data in one big collection. How can I get just the objects created by the current user?
1 Comment
E
Edward
said
about 10 years ago
You can use a query to get a list of all entities created by a specific user. For example, to get all entities created by the current user, try the following query:
Query q = new Query().equals("_acl.creator", myKinveyClient.user().getId());
myKinveyClient.appData("myCollection", MyEntity.class).get(q, new KinveyListCallback() {
Edward