{
  "id": "python/django-query-set-ordered-error",
  "signature": "django.core.exceptions.FieldError: Cannot resolve keyword 'name' into field. Choices are: id, title, created_at",
  "signature_zh": "Django字段错误：无法将关键字'name'解析为字段。选择有：id, title, created_at",
  "regex": "django\\.core\\.exceptions\\.FieldError:\\ Cannot\\ resolve\\ keyword\\ 'name'\\ into\\ field\\.\\ Choices\\ are:\\ id,\\ title,\\ created_at",
  "domain": "python",
  "category": "data_error",
  "subcategory": null,
  "root_cause": "Querying on a field that does not exist in the model.",
  "root_cause_type": "generic",
  "root_cause_zh": "查询模型中不存在的字段。",
  "versions": [
    {
      "version": "3.x",
      "introduced": null,
      "deprecated": null,
      "removed": null,
      "behavior_change": null,
      "status": "active"
    }
  ],
  "os_specific": {},
  "dead_ends": [
    {
      "action": "Assuming field exists from another model",
      "why_fails": "Each model has its own fields.",
      "fail_rate": 0.9,
      "condition": "",
      "sources": []
    },
    {
      "action": "Using related field without double underscore",
      "why_fails": "Related fields require __.",
      "fail_rate": 0.7,
      "condition": "",
      "sources": []
    }
  ],
  "workarounds": [
    {
      "action": "Check model fields and correct query",
      "success_rate": 0.95,
      "how": "MyModel.objects.filter(title__icontains='keyword')",
      "condition": "",
      "sources": []
    },
    {
      "action": "Use exact field name from model",
      "success_rate": 0.9,
      "how": "MyModel.objects.filter(id=1)",
      "condition": "",
      "sources": []
    }
  ],
  "workarounds_zh": [],
  "transition_graph": {
    "leads_to": [],
    "preceded_by": [],
    "frequently_confused_with": []
  },
  "official_doc_url": null,
  "official_doc_section": null,
  "error_code": null,
  "verification_tier": "ai_generated",
  "confidence": 0.86,
  "fix_success_rate": 0.8,
  "resolvable": "true",
  "first_seen": "2024-07-20",
  "last_confirmed": "2025-01-01",
  "last_updated": "2025-01-01",
  "evidence_count": 0,
  "tags": [],
  "locale": "en",
  "aliases": []
}