Files
automatisch/packages/web/src/graphql/queries/get-execution-steps.js
2024-02-29 09:38:32 +00:00

35 lines
657 B
JavaScript

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
}
}
}
}
}
`;