Files
fennec-fe/src/commits/queries.ts
2021-05-09 15:29:11 +08:00

20 lines
319 B
TypeScript

import { gql } from '@apollo/client';
export const COMMITS = gql`
query Commits($pipelineId: String!) {
commits(pipelineId: $pipelineId) {
message
hash
date
body
author_name
tasks {
id
units
status
startedAt
endedAt
}
}
}
`;