feat(flow): add virtual paused/published/draft status
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user