Support querying completed workflow instances by datetime range. e.g. For processes and variables on a particular day.
{
processInstances (stateIn: [COMPLETED], minStartTime: "2021-11-02T00:00:00.000Z", maxEndTime: "2021-11-02T23:59:59.999Z") {
nodes {
state
startTime
endTime
variables {
name
value
}
}
}
}