18 lines
293 B
TypeScript
18 lines
293 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
`;
|