Filteration of child table is possible?

Timesheet is a doctype and it has a child table named time_logs. In the child table, there is a datetime field named from_time. I want to filter records based on a particular datetime. Can I apply this filter directly using the method frappe.client.get_list? If so, how? .

Below code is not working Please give me the currect syntax .

frappe.call({
method: “frappe.client.get_list”, // Method to call to get the list of Timesheets
args: {
doctype: “Timesheet”,
filters: [
[
“time_logs”, “in”, [
[“from_time”, “>=”, updated_datetime],
[“to_time”, “<=”, current_now_datetime]
]
]
]
},