Merge pull request #1766 from automatisch/AUT-705

refactor: rewrite useStepWithTestExecutions with RQ
This commit is contained in:
Ali BARIN
2024-04-10 13:30:04 +02:00
committed by GitHub
8 changed files with 32 additions and 83 deletions

View File

@@ -1,16 +0,0 @@
import { gql } from '@apollo/client';
export const GET_STEP_WITH_TEST_EXECUTIONS = gql`
query GetStepWithTestExecutions($stepId: String!) {
getStepWithTestExecutions(stepId: $stepId) {
id
appKey
executionSteps {
id
executionId
stepId
status
dataOut
}
}
}
`;