How to search for a numeric field superior to a value ?
Searches on numerical values can be specified as ranges. By using MIN_INT_VALUE (-2147483648) and MAX_INT_VALUE (2147483647), we can create > or < filters. For example:
GET /api/dam/search/media?f=number:[120 TO 2147483647]
will return all medias having a value of the field number
superior to 120.