feat: Implement getExecutionSteps query

This commit is contained in:
Faruk AYDIN
2022-03-11 14:24:25 +03:00
committed by Ömer Faruk Aydın
parent 44623cc384
commit bf8adb286a
3 changed files with 43 additions and 0 deletions

View File

@@ -8,6 +8,11 @@ type Query {
getFlows: [Flow]
getStepWithTestExecutions(stepId: String!): [Step]
getExecutions(limit: Int!, offset: Int!): ExecutionConnection
getExecutionSteps(
executionId: String!
limit: Int!
offset: Int!
): ExecutionStepConnection
}
type Mutation {
@@ -363,11 +368,20 @@ type ExecutionEdge {
node: Execution
}
type ExecutionStepEdge {
node: ExecutionStep
}
type ExecutionConnection {
edges: [ExecutionEdge]
pageInfo: PageInfo
}
type ExecutionStepConnection {
edges: [ExecutionStepEdge]
pageInfo: PageInfo
}
schema {
query: Query
mutation: Mutation