Module django_query::operators
source · [−]Expand description
Standard operators from Django for use with filtering.
These have short names, matching their Django names, that can be used in the derive macro for Filterable. There are the following operators:
Operator | OperatorClass | Short name | Restrictions |
---|---|---|---|
EqImpl | Eq | exact | T: Eq |
InImpl | In | in | T: Eq |
ContainsImpl | Contains | contains | T: Display |
IContainsImpl | IContains | icontains | T: Display |
IExactImpl | IExact | iexact | T: Display |
StartsWithImpl | StartsWith | startswith | T: Display |
EndsWithImpl | EndsWith | endswith | T: Display |
LessImpl | Less | lt | T: Ord |
GreaterImpl | Greater | gt | T: Ord |
LessEqImpl | LessEq | lte | T: Ord |
GreaterEqImpl | GreaterEq | gte | T: Ord |
IsNullImpl | IsNull | isnull |