> For the complete documentation index, see [llms.txt](https://api-docs.rightsline.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-docs.rightsline.com/search/search-functions/multi-query-functions/or.md).

# $or

The $or function allows you to filter search results with one or more conditions and at least one must be true.  The following query would return results where the template ID is 1 **or** the start\_date characteristic has a value greater than 2018-03-15.

```json
{
    "query": {
        "$or": [
            {
                "$eq": [
                    "templateid",
                    1
                ]
            },
            {
                "$gt": [
                    "start_date",
                    "2018-03-15"
                ]
            }
        ]
    },
    "rows": 0,
    "start": 100
}
```
