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:
Diffstat (limited to 'doc/api/graphql/reference/gitlab_schema.graphql')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index c25f0988723..85bdf183e31 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -10162,6 +10162,11 @@ type Release {
): ReleaseEvidenceConnection
"""
+ Links of the release
+ """
+ links: ReleaseLinks
+
+ """
Milestones associated to the release
"""
milestones(
@@ -10452,6 +10457,28 @@ type ReleaseEvidenceEdge {
node: ReleaseEvidence
}
+type ReleaseLinks {
+ """
+ HTTP URL of the release's edit page
+ """
+ editUrl: String
+
+ """
+ HTTP URL of the issues page filtered by this release
+ """
+ issuesUrl: String
+
+ """
+ HTTP URL of the merge request page filtered by this release
+ """
+ mergeRequestsUrl: String
+
+ """
+ HTTP URL of the release
+ """
+ selfUrl: String
+}
+
"""
Represents the source code attached to a release in a particular format
"""