feat(flow): add virtual paused/published/draft status

This commit is contained in:
Ali BARIN
2023-04-09 16:23:34 +00:00
parent df55f746ca
commit 77e29050c8
8 changed files with 66 additions and 3 deletions

View File

@@ -250,6 +250,12 @@ type FlowEdge {
node: Flow
}
enum FlowStatus {
paused
published
draft
}
type Flow {
id: String
name: String
@@ -257,6 +263,7 @@ type Flow {
steps: [Step]
createdAt: String
updatedAt: String
status: FlowStatus
}
type Execution {