Remove limit when loading flows (#15106)

This commit is contained in:
ian
2022-08-17 23:41:04 +08:00
committed by GitHub
parent dca0290d1f
commit f8ea4fdcd2

View File

@@ -135,6 +135,7 @@ class FlowManager {
const flows = await flowsService.readByQuery({
filter: { status: { _eq: 'active' } },
fields: ['*', 'operations.*'],
limit: -1,
});
const flowTrees = flows.map((flow) => constructFlowTree(flow));