feat: add flow app icons in execution row

This commit is contained in:
Ali BARIN
2022-08-07 14:50:16 +02:00
parent ca141b1076
commit fc681d9ebc
4 changed files with 31 additions and 4 deletions

View File

@@ -13,7 +13,11 @@ const getExecutions = async (
) => {
const executions = context.currentUser
.$relatedQuery('executions')
.withGraphFetched('flow')
.withGraphFetched({
flow: {
steps: true
}
})
.orderBy('created_at', 'desc');
return paginate(executions, params.limit, params.offset);