feat(queries/get-executions): add updatedAt filter support

This commit is contained in:
Ali BARIN
2023-10-24 20:20:13 +00:00
parent ef3db21848
commit 6747c120ac
2 changed files with 23 additions and 0 deletions

View File

@@ -799,8 +799,14 @@ type Notification {
description: String
}
input ExecutionUpdatedAtFilterInput {
from: String
to: String
}
input ExecutionFiltersInput {
flowId: String
updatedAt: ExecutionUpdatedAtFilterInput
status: String
}