feat: Implement initial version of getExecutions query

This commit is contained in:
Faruk AYDIN
2022-03-09 20:45:03 +03:00
committed by Ömer Faruk Aydın
parent d4bef44b93
commit 343b360303
5 changed files with 49 additions and 0 deletions

View File

@@ -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!