In the readme, examples with @bpm.process.start.id do not follow the actual process definition ID pattern, making it harder to understand.
=> use the . placeholders instead then.
service MyService {
@bpm.process.start #orderProcess : {
id: 'orderProcess',
on: 'CREATE',
}
@bpm.process.start #notificationProcess : {
id: 'notificationProcess',
on: 'CREATE',
if: (field3 > 10)
}
entity MyEntity {
key ID : UUID;
field1 : String;
field2 : String;
field3 : Integer;
};
}
In the readme, examples with
@bpm.process.start.iddo not follow the actual process definition ID pattern, making it harder to understand.=> use the . placeholders instead then.