summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/queries/getCommit.query.graphql
blob: e2a2d831e4792de4b49b40a06147dc4695377caf (plain)
1
2
3
4
5
6
7
8
9
10
query getCommit($fileName: String!, $type: String!, $path: String!) {
  commit(path: $path, fileName: $fileName, type: $type) @client {
    sha
    message
    committedDate
    commitPath
    fileName
    type
  }
}