(workflowIds: string)
| 125 | type ComparisonOperator = '=' | '>' | '<' | '>=' | '<=' | '!=' |
| 126 | |
| 127 | function buildWorkflowIdsCondition(workflowIds: string): SQL | undefined { |
| 128 | const ids = workflowIds.split(',').filter(Boolean) |
| 129 | if (ids.length > 0) { |
| 130 | return inArray(workflow.id, ids) |
| 131 | } |
| 132 | return undefined |
| 133 | } |
| 134 | |
| 135 | function buildFolderIdsCondition(folderIds: string): SQL | undefined { |
| 136 | const ids = folderIds.split(',').filter(Boolean) |
no outgoing calls
no test coverage detected