like: Search Examples
The search operation like will search for entities where the search attribute value partially matches the search criteria.
The search operation like should only be used to search for string type values.
The search operation like is case insensitive. You can use it when filtering the _email field, allowing the search to find emails regardless of whether they are written in lowercase or uppercase..
Example 1: Search for entities with partial value string
Search:
- Use the search API: Device Search
- Match the attribute
_idwith values that contain877 - Limit the number of results to 10 per page
- Return the first page
Filter object will look like this:
{
"filter": {
"_id": {
"like": "877"
}
},
"limit": 10,
"page": 0
}Encoded API call:
Updated about 2 months ago
