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.graphql143
1 files changed, 143 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index 2696c7355bc..7e863490369 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -138,6 +138,18 @@ type AwardEmoji {
user: User!
}
+type BaseService implements Service {
+ """
+ Indicates if the service is active
+ """
+ active: Boolean
+
+ """
+ Class name of the service
+ """
+ type: String
+}
+
type Blob implements Entry {
"""
Flat path of the entry
@@ -4246,6 +4258,18 @@ type JiraImportStartPayload {
jiraImport: JiraImport
}
+type JiraService implements Service {
+ """
+ Indicates if the service is active
+ """
+ active: Boolean
+
+ """
+ Class name of the service
+ """
+ type: String
+}
+
type Label {
"""
Background color of the label
@@ -6411,6 +6435,41 @@ type Project {
serviceDeskEnabled: Boolean
"""
+ Project services
+ """
+ services(
+ """
+ Indicates if the service is active
+ """
+ active: Boolean
+
+ """
+ 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
+
+ """
+ Class name of the service
+ """
+ type: ServiceType
+ ): ServiceConnection
+
+ """
Indicates if Shared Runners are enabled for the project
"""
sharedRunnersEnabled: Boolean
@@ -7637,6 +7696,90 @@ type SentryErrorTags {
logger: String
}
+interface Service {
+ """
+ Indicates if the service is active
+ """
+ active: Boolean
+
+ """
+ Class name of the service
+ """
+ type: String
+}
+
+"""
+The connection type for Service.
+"""
+type ServiceConnection {
+ """
+ A list of edges.
+ """
+ edges: [ServiceEdge]
+
+ """
+ A list of nodes.
+ """
+ nodes: [Service]
+
+ """
+ Information to aid in pagination.
+ """
+ pageInfo: PageInfo!
+}
+
+"""
+An edge in a connection.
+"""
+type ServiceEdge {
+ """
+ A cursor for use in pagination.
+ """
+ cursor: String!
+
+ """
+ The item at the end of the edge.
+ """
+ node: Service
+}
+
+enum ServiceType {
+ ALERTS_SERVICE
+ ASANA_SERVICE
+ ASSEMBLA_SERVICE
+ BAMBOO_SERVICE
+ BUGZILLA_SERVICE
+ BUILDKITE_SERVICE
+ CAMPFIRE_SERVICE
+ CUSTOM_ISSUE_TRACKER_SERVICE
+ DISCORD_SERVICE
+ DRONE_CI_SERVICE
+ EMAILS_ON_PUSH_SERVICE
+ EXTERNAL_WIKI_SERVICE
+ FLOWDOCK_SERVICE
+ GITHUB_SERVICE
+ HANGOUTS_CHAT_SERVICE
+ HIPCHAT_SERVICE
+ IRKER_SERVICE
+ JENKINS_DEPRECATED_SERVICE
+ JENKINS_SERVICE
+ JIRA_SERVICE
+ MATTERMOST_SERVICE
+ MATTERMOST_SLASH_COMMANDS_SERVICE
+ MICROSOFT_TEAMS_SERVICE
+ PACKAGIST_SERVICE
+ PIPELINES_EMAIL_SERVICE
+ PIVOTALTRACKER_SERVICE
+ PROMETHEUS_SERVICE
+ PUSHOVER_SERVICE
+ REDMINE_SERVICE
+ SLACK_SERVICE
+ SLACK_SLASH_COMMANDS_SERVICE
+ TEAMCITY_SERVICE
+ UNIFY_CIRCUIT_SERVICE
+ YOUTRACK_SERVICE
+}
+
"""
Represents a snippet entry
"""