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

This commit is contained in:
Ali BARIN
2023-10-24 20:20:13 +00:00
committed by Faruk AYDIN
parent 2fa360e400
commit d851db22d0
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
}