react-native-db-models icon indicating copy to clipboard operation
react-native-db-models copied to clipboard

Is there any way to filter by some value?

Open cajoy opened this issue 8 years ago • 1 comments

For example I would like to filter all record where name starts as "Some"..

so it will return:

  • Some apple
  • Some banana

and etc...

cajoy avatar Apr 13 '16 16:04 cajoy

DB.fruits.get({fruit_type: "apple"}, function(results){ console.log(results); })

darkrishabh avatar Jun 15 '16 02:06 darkrishabh