I have been using the CMMN rest-api GET /cmmn-runtime/case-instances to retreive case instances. I also wanted to retreive the case variables in the same request.
GET /cmmn-runtime/case-instances?includeCaseVariables=true
Unfortunately this request does not return the case variables in the response. I looked in the source code and saw that this boolean is ignored (with commented out code)
Is there some reason that this code is commented out? There appears to be support for this in the CaseInstanceQueryImpl class. I could try to create a PR uncommenting out the code, but just wondering if there is some other problem with it that I am not seeing?