We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can decorate your command functions by using aggregateCommand()
import {aggregateCommand} from 'ddbes' async function addItem(name) { // ... await this.commit({type: 'ItemAdded', name}) } export default aggregateCommand(myCommand, {retry: true})