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.
Good afternoon Raghavendra,
You can use modules.CollectionAccess in businesslogic to run what are essentially "raw" mongo queries. You can read more about that over here:
http://devcenter.kinvey.com/html5/reference/business-logic/reference.html#collection-access-module
Thanks,
Raghavendra
Hi,
Lets say we have a collection Unit with embedded zones in it:
Units:
{ _id: "123,
name: "unit1",
zones: [
{id: 1, name : "z1", ...},
{id : 2, name : "z2"}
]
},
{...
}
How do I use Kinvey datastore query to fetch only zone with id = 2? How do I used mongoDB supported positional operator $ e.g. something like:
query.equalTo('zone.$.id', 2) ...? Is it supported and how?