We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc0e9e2 commit ebb257eCopy full SHA for ebb257e
README.rst
@@ -57,7 +57,11 @@ Usage
57
- Call the ``with_tree_fields()`` queryset method if you require the
58
additional fields respectively the CTE.
59
- Call the ``order_siblings_by("field_name")`` queryset method if you want to
60
- order tree siblings by a specific model field.
+ order tree siblings by a specific model field. Note that Django's standard
61
+ ``order_by()`` method isn't supported -- nodes are returned according to the
62
+ `depth-first search algorithm
63
+ <https://en.wikipedia.org/wiki/Depth-first_search>`__. It's not possible to
64
+ order siblings by more than one field either.
65
- Create a manager using
66
``TreeQuerySet.as_manager(with_tree_fields=True)`` if you want to add
67
tree fields to queries by default.
0 commit comments