I have a question in Event Storming or DDD about whether shall all commands trigger an aggregate and then an event or it is not mandatory for each command must have an aggregate with it?
for example:
- create order (command)-> at least one item in basket(aggregate)->order added (event)
- create order (command)->order added (event)
Can we have the second example or all commands must go to an aggregate as the first example? I know it might depend on context but is it mandatory or not?