I am using datastore in my application. It works great. But i don't know how to use the filters (query) in this API.
I need to get all the records which are 'createdDate' greater than the given date.
I use the following code.
NSDictionary *query = @{
@"createdDate":filterDate
};
[testTbl get:query];
But it return only the records which are created date same as the given filter date.
Pls let me know how to query this.