How to get started_at, ended_at, started_user_id from TimeTracking using the 2023-10 version?

I’m trying to migrate my API integration to the new version (2023-10)

Before I was using this query:

{““query””: “” { boards ( ids:2110384567, limit:25, page:1) { id workspace_id name items { id name column_values() { id text value } } } }"

And the value would return the JSON like this:

{
account_id: 12345,
column_id: “time_tracking”,
created_at: “2020-10-29 16:29:27 UTC”, // when the session was added to the cell
started_at: “2020-10-29 16:29:26 UTC”, // only applicable if the session was added by pressing the play button or via automation
ended_at: “2020-10-29 16:29:28 UTC”, // only applicable if the session
started_user_id: 4012689,
ended_user_id: 4012689,
id: 40949481, // unique session ID
manually_entered_start_date: false, // true if the session was manually entered
manually_entered_start_time: false, // true if manually entered
manually_entered_end_date: false,
manually_entered_end_time: false,
project_id: 162169281, // item ID,
status: “active”,
updated_at: “2020-10-29 16:29:28 UTC”
}

Now I’m using the 2023-10 version

{
boards (ids:2110384567, limit: 50, page: 1){
items_page (limit: 1 ) {
cursor
items {
id
name
column_values() {
id
text
value
}
}
}
id
workspace_id
name
}
}
And I can’t return the Json values below:

started_at, ended_at, started_user_id

How can I solve that ?