feat: add single execution page
This commit is contained in:
30
packages/web/src/graphql/queries/get-execution-steps.ts
Normal file
30
packages/web/src/graphql/queries/get-execution-steps.ts
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
@@ -12,6 +12,7 @@ export const GET_FLOW = gql`
|
||||
key
|
||||
appKey
|
||||
status
|
||||
position
|
||||
connection {
|
||||
id
|
||||
verified
|
||||
|
Reference in New Issue
Block a user