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.
Hi guys,
Let say I have a collection with 10 fields. But I do a query and I want to return 2 fields only. How to do that?
final AsyncAppData<ProdProcess> aggregate = AppController.getInstance().getKinveyClient().appData("prodprocess", ProdProcess.class);
Query q = AppController.getInstance().getKinveyClient().query();
q.greaterThan("date_input", dtLess1Day.toString());
aggregate.get(q, new KinveyListCallback<ProdProcess>() {
});
Mark Thien
Hi guys,
Let say I have a collection with 10 fields. But I do a query and I want to return 2 fields only. How to do that?
final AsyncAppData<ProdProcess> aggregate = AppController.getInstance().getKinveyClient().appData("prodprocess", ProdProcess.class);
Query q = AppController.getInstance().getKinveyClient().query();
q.greaterThan("date_input", dtLess1Day.toString());
aggregate.get(q, new KinveyListCallback<ProdProcess>() {
});