Filteration of Child table

here Timesheet is a doctype and has a childtable its field name is time_logs how to filter childtable fields.
frappe.call({
method: “frappe.client.get_list”, // Method to call to get the list of Timesheets
args: {
doctype: “Timesheet”,
filters: [
[“employee”, “=”, employee_ID],
[
“time_logs”, “in”, [
[“from_time”, “>=”, updated_datetime],
[“to_time”, “<=”, current_now_datetime]
]
]
]
},

@PRaful_9898 Can u please explain your need in detail?