You should be able to do the same via external workflow handle (inside workflow code), for example:
const external = await workflow.getExternalWorkflowHandle(workflowId);
try {
await external.signal(...);
} catch (err) {
// ...
}
You should be able to do the same via external workflow handle (inside workflow code), for example:
const external = await workflow.getExternalWorkflowHandle(workflowId);
try {
await external.signal(...);
} catch (err) {
// ...
}