Skip to content

Commit 1a897a8

Browse files
Handle limit and session in .count() method (#1040)
--------- Co-authored-by: ᑕᗩᑭTᗩIᑎᗰᗩᖇᐯᗴᒪ <CAPITAINMARVEL@users.noreply.github.com>
1 parent fb32f59 commit 1a897a8

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

beanie/odm/queries/find.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class FindQuery(
7171
AggregationQueryType = AggregationQuery
7272

7373
def __init__(self, document_model: Type["DocType"]):
74-
self.document_model: Type["DocType"] = document_model
74+
self.document_model = document_model
7575
self.find_expressions: List[Mapping[str, Any]] = []
7676
self.projection_model: Type[FindQueryResultType] = cast(
7777
Type[FindQueryResultType], self.document_model
@@ -147,9 +147,15 @@ async def count(self) -> int:
147147
Number of found documents
148148
:return: int
149149
"""
150+
kwargs = {}
151+
if isinstance(self, FindMany):
152+
if self.limit_number:
153+
kwargs["limit"] = self.limit_number
154+
if self.skip_number:
155+
kwargs["skip"] = self.skip_number
150156
return (
151157
await self.document_model.get_motor_collection().count_documents(
152-
self.get_filter_query()
158+
self.get_filter_query(), session=self.session, **kwargs
153159
)
154160
)
155161

tests/odm/documents/test_count.py

+8
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,11 @@ async def test_count_with_filter_query(documents):
1313
await documents(1, "cuatro", True)
1414
c = await DocumentTestModel.find_many({"test_str": "dos"}).count()
1515
assert c == 2
16+
17+
18+
async def test_count_with_limit(documents):
19+
await documents(5, "five", True)
20+
c = await DocumentTestModel.find_all().limit(1).count()
21+
assert c == 1
22+
d = await DocumentTestModel.find_all().count()
23+
assert d == 5

0 commit comments

Comments
 (0)