(triggers: string)
| 141 | } |
| 142 | |
| 143 | function buildTriggersCondition(triggers: string): SQL | undefined { |
| 144 | const triggerList = triggers.split(',').filter(Boolean) |
| 145 | if (triggerList.length > 0 && !triggerList.includes('all')) { |
| 146 | return inArray(workflowExecutionLogs.trigger, triggerList) |
| 147 | } |
| 148 | return undefined |
| 149 | } |
| 150 | |
| 151 | function buildDateConditions( |
| 152 | startDate?: string, |
no outgoing calls
no test coverage detected