Manages an individual condition within a query. Most often, this will be a lookup to ensure that a certain word or phrase appears in the documents being indexed. However, it also supports filtering types (such as 'lt', 'gt', 'in' and others) for more complex lookups.
| 440 | |
| 441 | |
| 442 | class SQ(Q, SearchNode): |
| 443 | """ |
| 444 | Manages an individual condition within a query. |
| 445 | |
| 446 | Most often, this will be a lookup to ensure that a certain word or phrase |
| 447 | appears in the documents being indexed. However, it also supports filtering |
| 448 | types (such as 'lt', 'gt', 'in' and others) for more complex lookups. |
| 449 | """ |
| 450 | |
| 451 | pass |
| 452 | |
| 453 | |
| 454 | class BaseSearchQuery: |
no outgoing calls