We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be72ff8 commit 3401b39Copy full SHA for 3401b39
time_tracker_api/time_entries/time_entries_repository.py
@@ -202,6 +202,7 @@ def find_all(
202
def find_all_v2(
203
self,
204
event_context: EventContext,
205
+ time_entries_id: List[str],
206
owner_id_list: List[str],
207
date_range: tuple = None,
208
fields: dict = None,
@@ -215,6 +216,7 @@ def find_all_v2(
215
216
query_builder = (
217
TimeEntryQueryBuilder()
218
.add_sql_date_range_condition(date_range)
219
+ .add_sql_in_condition(time_entries_id)
220
.add_sql_in_condition(owner_id_list)
221
.add_sql_where_equal_condition(fields)
222
.add_sql_limit_condition(limit)
0 commit comments