I want to build a Stream Deck Plugin.
On a button press, time tracking will start, and stop on repeat press.
As of now I have to open the app or go to a website to start or stop the tracking.
The API does not seem to have any documentation on how to mutate the column value of type duration.
query {
    items_by_column_values (board_id: 1234,
 column_id: "person",
 column_value: "PERSON NAME HERE") {
        id
        name
        state 
        column_values {
            id
            title 
            text
            type
        }
    }
}
                    {
                        "id": "time_tracking0",
                        "title": "Time Tracking",
                        "text": "10:41:49",
                        "type": "duration"
                    },
I want to start and stop a current session.
Can anyone point me in the right direction?

