Here\'s an example of what I need in sql:
SELECT name FROM employ WHERE name LIKE %bro%
How do I create view li
You can use regular expressions. As per this table you can write something like this to return any id that contains "SMS".
{
"selector": {
"_id": {
"$regex": "sms"
}
}
}
Basic regex you can use on that includes
"^sms" roughly to LIKE "%sms"
"sms$" roughly to LIKE "sms%"
You can read more on regular expressions here