20 lines
319 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
`; |