Files
automatisch/packages/web/src/graphql/queries/get-execution-steps.ts
2022-11-05 23:57:33 +01:00

36 lines
658 B
TypeScript

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
errorDetails
createdAt
updatedAt
step {
id
appKey
type
status
position
}
}
}
}
}
`;