(field: Term, value: str)
| 38 | |
| 39 | |
| 40 | def postgres_json_contains(field: Term, value: str) -> Criterion: |
| 41 | return BasicCriterion(JSONOperators.CONTAINS, field, ValueWrapper(value)) |
| 42 | |
| 43 | |
| 44 | def postgres_json_contained_by(field: Term, value: str) -> Criterion: |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…