30 lines
527 B
TypeScript
30 lines
527 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const GET_EXECUTIONS = gql`
|
|
query GetExecutions($limit: Int!, $offset: Int!) {
|
|
getExecutions(limit: $limit, offset: $offset) {
|
|
pageInfo {
|
|
currentPage
|
|
totalPages
|
|
}
|
|
edges {
|
|
node {
|
|
id
|
|
testRun
|
|
createdAt
|
|
updatedAt
|
|
status
|
|
flow {
|
|
id
|
|
name
|
|
active
|
|
steps {
|
|
iconUrl
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|