Changes between Initial Version and Version 1 of Ticket #36338
- Timestamp:
- Apr 19, 2025, 5:18:49 PM (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36338 – Description
initial v1 10 10 11 11 {{{ 12 Link.objects. filter(item_id=1).values("extra__key").annotate(count=Count("id"))12 Link.objects.all().values("extra__key", "item_id").annotate(count=Count("id")) 13 13 }}} 14 14