summaryrefslogtreecommitdiff
path: root/doc/api/graphql/reference/gitlab_schema.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/graphql/reference/gitlab_schema.graphql')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index 4e083142514..39b34e72e24 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -6066,6 +6066,11 @@ type SentryDetailedError {
culprit: String!
"""
+ External Base URL of the Sentry Instance
+ """
+ externalBaseUrl: String!
+
+ """
External URL of the error
"""
externalUrl: String!
@@ -6101,6 +6106,11 @@ type SentryDetailedError {
gitlabCommitPath: String
"""
+ URL of GitLab Issue
+ """
+ gitlabIssuePath: String
+
+ """
ID (global ID) of the error
"""
id: ID!
@@ -6156,6 +6166,11 @@ type SentryDetailedError {
status: SentryErrorStatus!
"""
+ Tags associated with the Sentry Error
+ """
+ tags: SentryErrorTags!
+
+ """
Title of the error
"""
title: String!
@@ -6209,6 +6224,21 @@ enum SentryErrorStatus {
}
"""
+State of a Sentry error
+"""
+type SentryErrorTags {
+ """
+ Severity level of the Sentry Error
+ """
+ level: String
+
+ """
+ Logger of the Sentry Error
+ """
+ logger: String
+}
+
+"""
Represents a snippet entry
"""
type Snippet implements Noteable {