Opened 6 weeks ago

Closed 3 weeks ago

Last modified 3 weeks ago

#36202 closed Cleanup/optimization (fixed)

Add examples with nested arrays/objects to JSONField docs for __contains and __contained_by

Reported by: Jacob Walls Owned by: Clifford Gama
Component: Documentation Version: 5.2
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

With data in a JSON field like:

{"key": [1, 2]}

I was initially surprised to find that this returns a match, since I assumed the values would be compared by equality when determining whether the top-level contains:

.filter(field__contains={"key": [1]})  # the additional value in the array doesn't matter

The docs say:

The returned objects are those where the given dict of key-value pairs are all contained in the top-level of the field.

From this sentence I assumed values were checked by equality, not containment all the way down. Apparently this is how it is supposed to work, see #31836. Of course strings don't behave this way, {"key": "value"} does not contain {"key": "val"}.

This seems tricky enough to warrant a little example?

Change History (7)

comment:1 by Sarah Boyce, 6 weeks ago

Triage Stage: UnreviewedAccepted

I agree adding an example would be nice, thank you for the ticket Jacob

comment:2 by Clifford Gama, 6 weeks ago

Owner: set to Clifford Gama
Status: newassigned

comment:4 by Jacob Walls, 3 weeks ago

Triage Stage: AcceptedReady for checkin

comment:5 by GitHub <noreply@…>, 3 weeks ago

Resolution: fixed
Status: assignedclosed

In 304e9f3d:

Fixed #36202 -- Added examples of JSONField contains and contained_by lookups with nested arrays to docs.

comment:6 by Mariusz Felisiak <felisiak.mariusz@…>, 3 weeks ago

In bcb6ada2:

[5.2.x] Fixed #36202 -- Added examples of JSONField contains and contained_by lookups with nested arrays to docs.

Backport of 304e9f3d6ae8387bbfc261d68b51247a1f5230bb from main

comment:7 by Mariusz Felisiak <felisiak.mariusz@…>, 3 weeks ago

In e9acb05b:

[5.1.x] Fixed #36202 -- Added examples of JSONField contains and contained_by lookups with nested arrays to docs.

Backport of 304e9f3d6ae8387bbfc261d68b51247a1f5230bb from main

Note: See TracTickets for help on using tickets.
Back to Top