Welcome to mirror list, hosted at ThFree Co, Russian Federation.

commit.query.graphql « queries « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4aeaaff8fe565fcb5d133f0e03208978372f15f (plain)
1
2
3
4
5
6
7
#import "ee_else_ce/repository/queries/commit.fragment.graphql"

query getCommit($fileName: String!, $type: String!, $path: String!) {
  commit(path: $path, fileName: $fileName, type: $type) @client {
    ...TreeEntryCommit
  }
}