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.graphql105
1 files changed, 105 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index 898ad11f450..76076a653a2 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -159,6 +159,61 @@ enum BlobViewersType {
simple
}
+"""
+Represents a project or group board
+"""
+type Board {
+ """
+ ID (global ID) of the board
+ """
+ id: ID!
+
+ """
+ Name of the board
+ """
+ name: String
+
+ """
+ Weight of the board
+ """
+ weight: Int
+}
+
+"""
+The connection type for Board.
+"""
+type BoardConnection {
+ """
+ A list of edges.
+ """
+ edges: [BoardEdge]
+
+ """
+ A list of nodes.
+ """
+ nodes: [Board]
+
+ """
+ Information to aid in pagination.
+ """
+ pageInfo: PageInfo!
+}
+
+"""
+An edge in a connection.
+"""
+type BoardEdge {
+ """
+ A cursor for use in pagination.
+ """
+ cursor: String!
+
+ """
+ The item at the end of the edge.
+ """
+ node: Board
+}
+
type Commit {
"""
Author of the commit
@@ -2716,6 +2771,31 @@ type Group {
avatarUrl: String
"""
+ Boards of the group
+ """
+ boards(
+ """
+ Returns the elements in the list that come after the specified cursor.
+ """
+ after: String
+
+ """
+ Returns the elements in the list that come before the specified cursor.
+ """
+ before: String
+
+ """
+ Returns the first _n_ elements from the list.
+ """
+ first: Int
+
+ """
+ Returns the last _n_ elements from the list.
+ """
+ last: Int
+ ): BoardConnection
+
+ """
Description of the namespace
"""
description: String
@@ -5175,6 +5255,31 @@ type Project {
avatarUrl: String
"""
+ Boards of the project
+ """
+ boards(
+ """
+ Returns the elements in the list that come after the specified cursor.
+ """
+ after: String
+
+ """
+ Returns the elements in the list that come before the specified cursor.
+ """
+ before: String
+
+ """
+ Returns the first _n_ elements from the list.
+ """
+ first: Int
+
+ """
+ Returns the last _n_ elements from the list.
+ """
+ last: Int
+ ): BoardConnection
+
+ """
Indicates if the project stores Docker container images in a container registry
"""
containerRegistryEnabled: Boolean