File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ class FindQuery(
71
71
AggregationQueryType = AggregationQuery
72
72
73
73
def __init__ (self , document_model : Type ["DocType" ]):
74
- self .document_model : Type [ "DocType" ] = document_model
74
+ self .document_model = document_model
75
75
self .find_expressions : List [Mapping [str , Any ]] = []
76
76
self .projection_model : Type [FindQueryResultType ] = cast (
77
77
Type [FindQueryResultType ], self .document_model
@@ -147,9 +147,15 @@ async def count(self) -> int:
147
147
Number of found documents
148
148
:return: int
149
149
"""
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
150
156
return (
151
157
await self .document_model .get_motor_collection ().count_documents (
152
- self .get_filter_query ()
158
+ self .get_filter_query (), session = self . session , ** kwargs
153
159
)
154
160
)
155
161
Original file line number Diff line number Diff line change @@ -13,3 +13,11 @@ async def test_count_with_filter_query(documents):
13
13
await documents (1 , "cuatro" , True )
14
14
c = await DocumentTestModel .find_many ({"test_str" : "dos" }).count ()
15
15
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
You can’t perform that action at this time.
0 commit comments