summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/queries/pathLastCommit.query.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/repository/queries/pathLastCommit.query.graphql')
-rw-r--r--app/assets/javascripts/repository/queries/pathLastCommit.query.graphql29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/assets/javascripts/repository/queries/pathLastCommit.query.graphql b/app/assets/javascripts/repository/queries/pathLastCommit.query.graphql
new file mode 100644
index 00000000000..90901f54d54
--- /dev/null
+++ b/app/assets/javascripts/repository/queries/pathLastCommit.query.graphql
@@ -0,0 +1,29 @@
+query pathLastCommit($projectPath: ID!, $path: String, $ref: String!) {
+ project(fullPath: $projectPath) {
+ repository {
+ tree(path: $path, ref: $ref) {
+ commit {
+ id
+ title
+ message
+ webUrl
+ authoredDate
+ author {
+ name
+ avatarUrl
+ webUrl
+ }
+ pipeline {
+ detailedStatus {
+ detailsPath
+ icon
+ tooltip
+ text
+ group
+ }
+ }
+ }
+ }
+ }
+ }
+}