I'm testing whether I should use this plugin for a new project - so far, it's OK, but is this really not supported?
Very simple, I have a child object/mapping off the process domain object:
class MyProcessDomainObject {
MyRelatedDomainObject foo
}
I get couldn't find type for [id:1]
During the call to: ProcessInstance pi = activitiService.startProcess(params)
I've tried to ensure that only the id of the top-level object is in the params:
def p = [:]
p[sessionUsernameKey] = session[sessionUsernameKey]
p.controller = "labOrder"
p.id = labOrderInstanceId
ProcessInstance pi = activitiService.startProcess(params)
But still get the error.
What is the recommended approach to this?
Thanks