feat: add header with id, name, date in Execution

This commit is contained in:
Ali BARIN
2022-08-10 20:59:29 +02:00
parent 5d7daa8886
commit a5b6e66e22
4 changed files with 89 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
import { gql } from '@apollo/client';
export const GET_EXECUTION = gql`
query GetExecution($executionId: String!) {
getExecution(executionId: $executionId) {
id
testRun
createdAt
updatedAt
flow {
id
name
active
}
}
}
`;