Files
automatisch/packages/web/src/graphql/queries/get-execution.ts
2022-08-11 11:00:14 +02:00

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