# django.core.exceptions.FieldError: Cannot resolve keyword 'name' into field. Choices are: id, title, created_at

- **ID:** `python/django-query-set-ordered-error`
- **Domain:** python
- **Category:** data_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

Querying on a field that does not exist in the model.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.x | active | — | — |

## Workarounds

1. **Check model fields and correct query** (95% success)
   ```
   MyModel.objects.filter(title__icontains='keyword')
   ```
2. **Use exact field name from model** (90% success)
   ```
   MyModel.objects.filter(id=1)
   ```

## Dead Ends

- **Assuming field exists from another model** — Each model has its own fields. (90% fail)
- **Using related field without double underscore** — Related fields require __. (70% fail)
