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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-07-15 15:10:10 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-07-15 15:10:10 +0300
commit1a129420d6bd3e5223e8ba4a5b7749764118a885 (patch)
tree010a9f12e7691e11c473ffc3313ffc245b75b1ec /app/graphql/queries
parent9bd7e5997e1452257e3861555c151764cf0574d7 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/graphql/queries')
-rw-r--r--app/graphql/queries/repository/path_last_commit.query.graphql59
1 files changed, 31 insertions, 28 deletions
diff --git a/app/graphql/queries/repository/path_last_commit.query.graphql b/app/graphql/queries/repository/path_last_commit.query.graphql
index bcb07ae3182..914be3a72c1 100644
--- a/app/graphql/queries/repository/path_last_commit.query.graphql
+++ b/app/graphql/queries/repository/path_last_commit.query.graphql
@@ -4,43 +4,46 @@ query pathLastCommit($projectPath: ID!, $path: String, $ref: String!) {
id
repository {
__typename
- tree(path: $path, ref: $ref) {
+ paginatedTree(path: $path, ref: $ref) {
__typename
- lastCommit {
+ nodes {
__typename
- id
- sha
- title
- titleHtml
- descriptionHtml
- message
- webPath
- authoredDate
- authorName
- authorGravatar
- author {
+ lastCommit {
__typename
id
- name
- avatarUrl
+ sha
+ title
+ titleHtml
+ descriptionHtml
+ message
webPath
- }
- signatureHtml
- pipelines(ref: $ref, first: 1) {
- __typename
- edges {
+ authoredDate
+ authorName
+ authorGravatar
+ author {
+ __typename
+ id
+ name
+ avatarUrl
+ webPath
+ }
+ signatureHtml
+ pipelines(ref: $ref, first: 1) {
__typename
- node {
+ edges {
__typename
- id
- detailedStatus {
+ node {
__typename
id
- detailsPath
- icon
- tooltip
- text
- group
+ detailedStatus {
+ __typename
+ id
+ detailsPath
+ icon
+ tooltip
+ text
+ group
+ }
}
}
}