refactor(web): remove typescript
This commit is contained in:
34
packages/web/src/graphql/queries/get-execution-steps.js
Normal file
34
packages/web/src/graphql/queries/get-execution-steps.js
Normal file
@@ -0,0 +1,34 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user