feat: Implement initial version of getExecutions query
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
d4bef44b93
commit
343b360303
@@ -7,6 +7,7 @@ type Query {
|
||||
getFlow(id: String!): Flow
|
||||
getFlows: [Flow]
|
||||
getStepWithTestExecutions(stepId: String!): [Step]
|
||||
getExecutions: [Execution]
|
||||
}
|
||||
|
||||
type Mutation {
|
||||
@@ -168,6 +169,14 @@ type Flow {
|
||||
steps: [Step]
|
||||
}
|
||||
|
||||
type Execution {
|
||||
id: String
|
||||
testRun: Boolean
|
||||
createdAt: String
|
||||
updatedAt: String
|
||||
flow: Flow
|
||||
}
|
||||
|
||||
input CreateConnectionInput {
|
||||
key: AvailableAppsEnumType!
|
||||
formattedData: JSONObject!
|
||||
|
Reference in New Issue
Block a user