feat: add single execution page

This commit is contained in:
Ali BARIN
2022-03-16 17:37:06 +01:00
parent c9bf7c9e21
commit f11f523b30
24 changed files with 372 additions and 36 deletions

View File

@@ -0,0 +1,30 @@
import { gql } from '@apollo/client';
export const GET_EXECUTION_STEPS = gql`
query GetExecutionSteps($executionId: String!, $limit: Int!, $offset: Int!) {
getExecutionSteps(executionId: $executionId, limit: $limit, offset: $offset) {
pageInfo {
currentPage
totalPages
}
edges {
node {
id
executionId
status
dataIn
dataOut
createdAt
updatedAt
step {
id
appKey
type
status
position
}
}
}
}
}
`;

View File

@@ -12,6 +12,7 @@ export const GET_FLOW = gql`
key
appKey
status
position
connection {
id
verified