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.
Why don't all users see the same data when querying?
E
Edward
started a topic
over 9 years ago
When I perform a query in my app, it is only returning objects created by the current user. How can I get everybody's data to return with a query?
1 Comment
E
Edward
said
over 9 years ago
Every entity in a collection has a JSON field called `_acl`, which stands for Access Control List. By default, every entity is only modifiable and accessible by the user who created it.
To get around this, you can modify the _acl fields when saving your entities.
First, add an _acl declaration to your GenericJson class:
@Key("_acl")
private KinveyMetaData.AccessControlList acl;
Then, before you save this entity you can call various methods on that acl field, such as:
Edward