Changes between Initial Version and Version 1 of Ticket #36508


Ignore:
Timestamp:
Jul 15, 2025, 10:14:21 AM (2 months ago)
Author:
Jacob Walls
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36508 – Description

    initial v1  
    11`exact` and `iexact` vary in their treatment of `None` when looking up JSON key paths:
    22{{{
    3 optional_param = request.GET.get("param")
     3optional_param = request.GET.get("param", None)
    44qs1 = Model.objects.filter(json__key=optional_param)
    55qs2 = Model.objects.filter(json__key__iexact=optional_param)
Back to Top