Module query
Create SQL statements for QuerySets.
The code in here encapsulates all of the SQL construction so that QuerySets
themselves do not have to (and could be backed by things other than SQL
databases). The abstraction barrier only works one way: this module has to know
all about the internals of models in order to get the information it needs.
source linkClasses
Functions
▷ def add_to_dict(data, key, value) Add "value" to the set of values for "key", whether or not "key" already exists.
▶ def get_order_dir(field, default='ASC') Return the field name and direction for an order specification. For example, '-foo' is returned as ('foo', 'DESC').
The 'default' param is used to indicate which way no prefix (or a '+'
prefix) should sort. The '-' prefix always sorts the opposite way.
Reexports
▷ def is_reverse_o2o(field) Check if the given field is reverse-o2o. The field is expected to be some sort of relation field or related object.