list_issues
List all issues in Sentry.
Use this tool when you need to:
- View all issues in a Sentry organization
If you're looking for more granular data beyond a summary of identified problems, you should use the `search_errors()` or `search_transactions()` tools instead.
<examples>
### Find the newest unresolved issues in the 'my-project' project
```
list_issues(organizationSlug='my-organization', projectSlug='my-project', query='is:unresolved', sortBy='last_seen')
```
### Find the most frequently occurring crashes in the 'my-project' project
```
list_issues(organizationSlug='my-organization', projectSlug='my-project', query='is:unresolved error....