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 4bc4ed2 commit 91e6bfaCopy full SHA for 91e6bfa
time_tracker_api/time_entries/time_entries_repository.py
@@ -262,6 +262,7 @@ def find_all(
262
{visibility_condition}
263
{test_users_exclusion_condition}
264
{custom_sql_conditions_clause}
265
+ {order_clause}
266
OFFSET @offset LIMIT @max_count
267
""".format(
268
partition_key_attribute=self.partition_key_attribute,
@@ -275,6 +276,7 @@ def find_all(
275
276
custom_sql_conditions_clause=self.create_custom_sql_conditions(
277
custom_sql_conditions
278
),
279
+ order_clause=self.create_sql_order_clause(),
280
)
281
282
result = self.container.query_items(
0 commit comments