# Resolve Addressed PR Review Comments
Resolve review comments that have been **clearly addressed** in the code.
## Important
- Check each comment individually
- Only resolve if the specific fix is confirmed in the code
- Do NOT resolve comments that are unclear or still pending
## Steps
1. Get unresolved thread IDs from the PR
2. For each comment, verify the fix exists in the code
3. Resolve only confirmed threads using `resolveReviewThread` mutation
```bash
gh api graphql -f query='
mutation {
resolveReviewThread(input: {threadId: "PRRT_xxx"}) {
thread { isResolved }
}
}'
```