Changes between Initial Version and Version 1 of Ticket #28872


Ignore:
Timestamp:
Dec 1, 2017, 10:09:19 AM (6 years ago)
Author:
Jerome Leclanche
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28872 – Description

    initial v1  
    442. Create another model MyModel2 with a field `id = CharField(max_length=255)`
    55
    6 Reproduce by doing MyModel1.objects.filter(resource__foo__id__in=MyModel2.objects.all().values_list("id"))
     6Reproduce by doing `MyModel1.objects.filter(resource__foo__id__in=MyModel2.objects.all().values_list("id"))`
    77
    88Expected result: Should look at MyModel1 for objects with `resource` matching `{"foo": {"id": <id>}}`.
Back to Top