# Find code reviews

> Find the status of code reviews with the cm find command in Unity Version Control CLI.

Find information about the status of a code review.

## Filtering options

The following list displays the different filtering options (`where`) that are available to use with the `cm find review` command:

* `assignee`
* `comment`
* `date`
* `guid`
* `id`
* `owner`
* `status`
* `targetid`

> **Note:**
>
> The condition `date` and `targetid` correspond to the **Creation date** and **Reviewed object** columns in the **Code reviews** view of the UVCS desktop application.

## Output options

The following list displays the different output options (`--format`) available to use with the `cm find review` command:

* `assignee`
* `date`
* `id`
* `owner`
* `status`
* `target`
* `targettype`
* `title`

## `cm find reviews` example

Filter reviews by the following conditions:

* You're the assignee.
* The status is `1`.
* The review was made between `2013/05/01` and `2013/06/29`.

```text
cm find "review where assignee = 'me' and date > '2013/06/14' and date < '2013/06/15' and status = 1"
8424078   29/05/2013 14:50:35 borja    Status1    pablo   "Review scm12816" Branch id:424073
426717   14/06/2013 14:01:14 roberto  Status1   pablo   "Code review 1" Branch id: 426648
```
