8000 add support for sort in collection.find function by denizalpaslan · Pull Request #359 · arangodb/python-arango · GitHub
[go: up one dir, main page]

Skip to content

add support for sort in collection.find function #359

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jan 31, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.

Loading

Diff view
Diff view
Prev Previous commit
Next Next commit
Update arango/collection.py
Co-authored-by: Alex Petenchea <alex.petenchea@gmail.com>
  • Loading branch information
denizalpaslan and apetenchea authored Jan 30, 2025
commit df2ab2f15492d8a3f153c206f0f347a17230169d
2 changes: 1 addition & 1 deletion arango/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ def find(
skip: Optional[int] = None,
limit: Optional[int] = None,
allow_dirty_read: bool = False,
sort: Jsons = [],
sort: Optional[Jsons] = None,
) -> Result[Cursor]:
"""Return all documents that match the given filters.

Expand Down
Loading
0