Edit time-tracking session data
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
{
sessions (last: 5){
edges {
node {
id
_etag
runStep {
runId
position
}
checkIn
checkOut
createdBy {
email
}
}
}
}
}mutation UpdateSession($input: UpdateSessionInput!) {
updateSession(input: $input) {
session {
checkIn
checkOut
id
}
}
}{
"input": {
"id": <from previous step>,
"etag": <from previous step>,
"checkIn": <use your own value here>
"checkOut": <use your own value here>
}
}