Changes between Initial Version and Version 1 of Ticket #28872
- Timestamp:
- Dec 1, 2017, 10:09:19 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28872 – Description
initial v1 4 4 2. Create another model MyModel2 with a field `id = CharField(max_length=255)` 5 5 6 Reproduce by doing MyModel1.objects.filter(resource__foo__id__in=MyModel2.objects.all().values_list("id"))6 Reproduce by doing `MyModel1.objects.filter(resource__foo__id__in=MyModel2.objects.all().values_list("id"))` 7 7 8 8 Expected result: Should look at MyModel1 for objects with `resource` matching `{"foo": {"id": <id>}}`.