Skip to content

Commit ca0f26f

Browse files
committed
Added docs for IS NOT NULL
1 parent 95e0233 commit ca0f26f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docs/cqlengine/queryset.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,14 @@ In addition to simple equal to queries, cqlengine also supports querying with ot
199199
200200
q = Automobile.objects.filter(model__like='%Civic%').allow_filtering()
201201
202+
:attr:`IS NOT NULL (IsNotNull(column_name)) <query.QueryOperator.IsNotNullOperator>`
203+
204+
The IS NOT NULL operator is not yet supported for C*.
205+
206+
.. code-block:: python
207+
208+
q = Automobile.objects.filter(IsNotNull('model'))
209+
202210
Limitations:
203211
- Currently, cqlengine does not support SASI index creation. To use this feature,
204212
you need to create the SASI index using the core driver.

0 commit comments

Comments
 (0)