After create microflow is triggered even when commit without events is true.

0
I am debugging a microflow and was mistified why an after create microflow was triggered. The newly created object was committed without events. I thought that committing this way never should trigger an after create event. Or am I missing somehting here. Regards, Ronald
asked
1 answers
4

AFAIK: an after create is executed when you create a new object. So this has nothing to do with committing, with or without events, since an after create is one step before that:

Create new Object --> After create microflow --> Before Commit microflow --> Commit object --> After commit microflow

answered