Right, my question was _is_ parity in requests going to be added in activiti going forward. I can do the following for active processes:
runtimeService.createProcessInstanceQuery().variableValueEquals('x','y').list()
but for historical ones, I have to do as you mentioned,
list = historyService.createHistoricTaskInstanceQuery().taskVariableValueEquals('x','y').list()
then, for each entry in the list… query again for the historical processInstance.
I was really asking if we will ever be able to the same variable searches in the historyService that we can do in the runtimeService in regards to process instances, or is there no plan for making that addition?