Commit 0e366816 authored by Luke Duncalfe's avatar Luke Duncalfe

Add . to end of auto-generated GraphQL docs

And also remove the trailing `.` from the end of some type and enum
descriptions.
parent ae6d81dd
...@@ -7,7 +7,7 @@ module Types ...@@ -7,7 +7,7 @@ module Types
# a plain hash. # a plain hash.
class DeleteJobsResponseType < BaseObject # rubocop:disable Graphql/AuthorizeTypes class DeleteJobsResponseType < BaseObject # rubocop:disable Graphql/AuthorizeTypes
graphql_name 'DeleteJobsResponse' graphql_name 'DeleteJobsResponse'
description 'The response from the AdminSidekiqQueuesDeleteJobs mutation.' description 'The response from the AdminSidekiqQueuesDeleteJobs mutation'
field :completed, field :completed,
GraphQL::BOOLEAN_TYPE, GraphQL::BOOLEAN_TYPE,
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
module AwardEmojis module AwardEmojis
class AwardEmojiType < BaseObject class AwardEmojiType < BaseObject
graphql_name 'AwardEmoji' graphql_name 'AwardEmoji'
description 'An emoji awarded by a user.' description 'An emoji awarded by a user'
authorize :read_emoji authorize :read_emoji
......
...@@ -6,7 +6,7 @@ module Types ...@@ -6,7 +6,7 @@ module Types
graphql_name 'DesignAtVersion' graphql_name 'DesignAtVersion'
description 'A design pinned to a specific version. ' \ description 'A design pinned to a specific version. ' \
'The image field reflects the design as of the associated version.' 'The image field reflects the design as of the associated version'
authorize :read_design authorize :read_design
...@@ -23,7 +23,7 @@ module Types ...@@ -23,7 +23,7 @@ module Types
field :design, field :design,
Types::DesignManagement::DesignType, Types::DesignManagement::DesignType,
null: false, null: false,
description: 'The underlying design.' description: 'The underlying design'
def cached_stateful_version(_parent) def cached_stateful_version(_parent)
version version
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
module DesignManagement module DesignManagement
class DesignCollectionType < BaseObject class DesignCollectionType < BaseObject
graphql_name 'DesignCollection' graphql_name 'DesignCollection'
description 'A collection of designs.' description 'A collection of designs'
authorize :read_design authorize :read_design
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
module ErrorTracking module ErrorTracking
class SentryDetailedErrorType < ::Types::BaseObject class SentryDetailedErrorType < ::Types::BaseObject
graphql_name 'SentryDetailedError' graphql_name 'SentryDetailedError'
description 'A Sentry error.' description 'A Sentry error'
present_using SentryErrorPresenter present_using SentryErrorPresenter
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
module ErrorTracking module ErrorTracking
class SentryErrorCollectionType < ::Types::BaseObject class SentryErrorCollectionType < ::Types::BaseObject
graphql_name 'SentryErrorCollection' graphql_name 'SentryErrorCollection'
description 'An object containing a collection of Sentry errors, and a detailed error.' description 'An object containing a collection of Sentry errors, and a detailed error'
authorize :read_sentry_issue authorize :read_sentry_issue
...@@ -21,7 +21,7 @@ module Types ...@@ -21,7 +21,7 @@ module Types
required: false required: false
argument :sort, argument :sort,
String, String,
description: 'Attribute to sort on. Options are frequency, first_seen, last_seen. last_seen is default.', description: 'Attribute to sort on. Options are frequency, first_seen, last_seen. last_seen is default',
required: false required: false
end end
field :detailed_error, Types::ErrorTracking::SentryDetailedErrorType, field :detailed_error, Types::ErrorTracking::SentryDetailedErrorType,
......
...@@ -5,7 +5,7 @@ module Types ...@@ -5,7 +5,7 @@ module Types
# rubocop: disable Graphql/AuthorizeTypes # rubocop: disable Graphql/AuthorizeTypes
class SentryErrorStackTraceEntryType < ::Types::BaseObject class SentryErrorStackTraceEntryType < ::Types::BaseObject
graphql_name 'SentryErrorStackTraceEntry' graphql_name 'SentryErrorStackTraceEntry'
description 'An object containing a stack trace entry for a Sentry error.' description 'An object containing a stack trace entry for a Sentry error'
field :function, GraphQL::STRING_TYPE, field :function, GraphQL::STRING_TYPE,
null: true, null: true,
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
module ErrorTracking module ErrorTracking
class SentryErrorStackTraceType < ::Types::BaseObject class SentryErrorStackTraceType < ::Types::BaseObject
graphql_name 'SentryErrorStackTrace' graphql_name 'SentryErrorStackTrace'
description 'An object containing a stack trace entry for a Sentry error.' description 'An object containing a stack trace entry for a Sentry error'
authorize :read_sentry_issue authorize :read_sentry_issue
......
...@@ -5,7 +5,7 @@ module Types ...@@ -5,7 +5,7 @@ module Types
# rubocop: disable Graphql/AuthorizeTypes # rubocop: disable Graphql/AuthorizeTypes
class SentryErrorType < ::Types::BaseObject class SentryErrorType < ::Types::BaseObject
graphql_name 'SentryError' graphql_name 'SentryError'
description 'A Sentry error. A simplified version of SentryDetailedError.' description 'A Sentry error. A simplified version of SentryDetailedError'
present_using SentryErrorPresenter present_using SentryErrorPresenter
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class IssueStatusCountsType < BaseObject class IssueStatusCountsType < BaseObject
graphql_name 'IssueStatusCountsType' graphql_name 'IssueStatusCountsType'
description "Represents total number of issues for the represented statuses." description 'Represents total number of issues for the represented statuses'
authorize :read_issue authorize :read_issue
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class MilestoneType < BaseObject class MilestoneType < BaseObject
graphql_name 'Milestone' graphql_name 'Milestone'
description 'Represents a milestone.' description 'Represents a milestone'
present_using MilestonePresenter present_using MilestonePresenter
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class MutationOperationModeEnum < BaseEnum class MutationOperationModeEnum < BaseEnum
graphql_name 'MutationOperationMode' graphql_name 'MutationOperationMode'
description 'Different toggles for changing mutator behavior.' description 'Different toggles for changing mutator behavior'
# Suggested param name for the enum: `operation_mode` # Suggested param name for the enum: `operation_mode`
......
...@@ -731,7 +731,7 @@ type AlertTodoCreatePayload { ...@@ -731,7 +731,7 @@ type AlertTodoCreatePayload {
} }
""" """
An emoji awarded by a user. An emoji awarded by a user
""" """
type AwardEmoji { type AwardEmoji {
""" """
...@@ -1448,7 +1448,7 @@ type Branch { ...@@ -1448,7 +1448,7 @@ type Branch {
} }
""" """
Represents the total number of issues and their weights for a particular day. Represents the total number of issues and their weights for a particular day
""" """
type BurnupChartDailyTotals { type BurnupChartDailyTotals {
""" """
...@@ -3139,7 +3139,7 @@ enum DastScanTypeEnum { ...@@ -3139,7 +3139,7 @@ enum DastScanTypeEnum {
} }
""" """
Represents a DAST scanner profile. Represents a DAST scanner profile
""" """
type DastScannerProfile { type DastScannerProfile {
""" """
...@@ -3359,7 +3359,7 @@ type DastScannerProfileUpdatePayload { ...@@ -3359,7 +3359,7 @@ type DastScannerProfileUpdatePayload {
} }
""" """
Represents a DAST Site Profile. Represents a DAST Site Profile
""" """
type DastSiteProfile { type DastSiteProfile {
""" """
...@@ -3626,7 +3626,7 @@ type DeleteAnnotationPayload { ...@@ -3626,7 +3626,7 @@ type DeleteAnnotationPayload {
} }
""" """
The response from the AdminSidekiqQueuesDeleteJobs mutation. The response from the AdminSidekiqQueuesDeleteJobs mutation
""" """
type DeleteJobsResponse { type DeleteJobsResponse {
""" """
...@@ -3816,11 +3816,11 @@ type Design implements CurrentUserTodos & DesignFields & Noteable { ...@@ -3816,11 +3816,11 @@ type Design implements CurrentUserTodos & DesignFields & Noteable {
} }
""" """
A design pinned to a specific version. The image field reflects the design as of the associated version. A design pinned to a specific version. The image field reflects the design as of the associated version
""" """
type DesignAtVersion implements DesignFields { type DesignAtVersion implements DesignFields {
""" """
The underlying design. The underlying design
""" """
design: Design! design: Design!
...@@ -3916,7 +3916,7 @@ type DesignAtVersionEdge { ...@@ -3916,7 +3916,7 @@ type DesignAtVersionEdge {
} }
""" """
A collection of designs. A collection of designs
""" """
type DesignCollection { type DesignCollection {
""" """
...@@ -5106,7 +5106,7 @@ type EnvironmentEdge { ...@@ -5106,7 +5106,7 @@ type EnvironmentEdge {
} }
""" """
Represents an epic. Represents an epic
""" """
type Epic implements CurrentUserTodos & Noteable { type Epic implements CurrentUserTodos & Noteable {
""" """
...@@ -5603,7 +5603,7 @@ type EpicConnection { ...@@ -5603,7 +5603,7 @@ type EpicConnection {
} }
""" """
Counts of descendent epics. Counts of descendent epics
""" """
type EpicDescendantCount { type EpicDescendantCount {
""" """
...@@ -6203,7 +6203,7 @@ enum EpicSort { ...@@ -6203,7 +6203,7 @@ enum EpicSort {
} }
""" """
State of an epic. State of an epic
""" """
enum EpicState { enum EpicState {
all all
...@@ -8703,7 +8703,7 @@ enum IssueState { ...@@ -8703,7 +8703,7 @@ enum IssueState {
} }
""" """
Represents total number of issues for the represented statuses. Represents total number of issues for the represented statuses
""" """
type IssueStatusCountsType { type IssueStatusCountsType {
""" """
...@@ -8743,7 +8743,7 @@ enum IssueType { ...@@ -8743,7 +8743,7 @@ enum IssueType {
} }
""" """
Represents an iteration object. Represents an iteration object
""" """
type Iteration implements TimeboxBurnupTimeSeriesInterface { type Iteration implements TimeboxBurnupTimeSeriesInterface {
""" """
...@@ -10606,7 +10606,7 @@ type MetricsDashboardAnnotationEdge { ...@@ -10606,7 +10606,7 @@ type MetricsDashboardAnnotationEdge {
} }
""" """
Represents a milestone. Represents a milestone
""" """
type Milestone implements TimeboxBurnupTimeSeriesInterface { type Milestone implements TimeboxBurnupTimeSeriesInterface {
""" """
...@@ -10868,7 +10868,7 @@ type Mutation { ...@@ -10868,7 +10868,7 @@ type Mutation {
} }
""" """
Different toggles for changing mutator behavior. Different toggles for changing mutator behavior
""" """
enum MutationOperationMode { enum MutationOperationMode {
""" """
...@@ -14236,7 +14236,7 @@ type Query { ...@@ -14236,7 +14236,7 @@ type Query {
} }
""" """
State of a Geo registry. State of a Geo registry
""" """
enum RegistryState { enum RegistryState {
""" """
...@@ -14968,7 +14968,7 @@ enum RequirementState { ...@@ -14968,7 +14968,7 @@ enum RequirementState {
} }
""" """
Counts of requirements by their state. Counts of requirements by their state
""" """
type RequirementStatesCount { type RequirementStatesCount {
""" """
...@@ -15556,7 +15556,7 @@ type SecurityReportSummarySection { ...@@ -15556,7 +15556,7 @@ type SecurityReportSummarySection {
} }
""" """
The type of the security scanner. The type of the security scanner
""" """
enum SecurityScannerType { enum SecurityScannerType {
CONTAINER_SCANNING CONTAINER_SCANNING
...@@ -15588,7 +15588,7 @@ type SecurityScanners { ...@@ -15588,7 +15588,7 @@ type SecurityScanners {
} }
""" """
A Sentry error. A Sentry error
""" """
type SentryDetailedError { type SentryDetailedError {
""" """
...@@ -15733,7 +15733,7 @@ type SentryDetailedError { ...@@ -15733,7 +15733,7 @@ type SentryDetailedError {
} }
""" """
A Sentry error. A simplified version of SentryDetailedError. A Sentry error. A simplified version of SentryDetailedError
""" """
type SentryError { type SentryError {
""" """
...@@ -15823,7 +15823,7 @@ type SentryError { ...@@ -15823,7 +15823,7 @@ type SentryError {
} }
""" """
An object containing a collection of Sentry errors, and a detailed error. An object containing a collection of Sentry errors, and a detailed error
""" """
type SentryErrorCollection { type SentryErrorCollection {
""" """
...@@ -15876,7 +15876,7 @@ type SentryErrorCollection { ...@@ -15876,7 +15876,7 @@ type SentryErrorCollection {
searchTerm: String searchTerm: String
""" """
Attribute to sort on. Options are frequency, first_seen, last_seen. last_seen is default. Attribute to sort on. Options are frequency, first_seen, last_seen. last_seen is default
""" """
sort: String sort: String
): SentryErrorConnection ): SentryErrorConnection
...@@ -15935,7 +15935,7 @@ type SentryErrorFrequency { ...@@ -15935,7 +15935,7 @@ type SentryErrorFrequency {
} }
""" """
An object containing a stack trace entry for a Sentry error. An object containing a stack trace entry for a Sentry error
""" """
type SentryErrorStackTrace { type SentryErrorStackTrace {
""" """
...@@ -15970,7 +15970,7 @@ type SentryErrorStackTraceContext { ...@@ -15970,7 +15970,7 @@ type SentryErrorStackTraceContext {
} }
""" """
An object containing a stack trace entry for a Sentry error. An object containing a stack trace entry for a Sentry error
""" """
type SentryErrorStackTraceEntry { type SentryErrorStackTraceEntry {
""" """
...@@ -16670,7 +16670,7 @@ type TerraformStateRegistryEdge { ...@@ -16670,7 +16670,7 @@ type TerraformStateRegistryEdge {
} }
""" """
Represents a requirement test report. Represents a requirement test report
""" """
type TestReport { type TestReport {
""" """
...@@ -18623,7 +18623,7 @@ type VulnerabilitiesCountByDayEdge { ...@@ -18623,7 +18623,7 @@ type VulnerabilitiesCountByDayEdge {
} }
""" """
Represents a vulnerability. Represents a vulnerability
""" """
type Vulnerability { type Vulnerability {
""" """
...@@ -18786,7 +18786,7 @@ enum VulnerabilityGrade { ...@@ -18786,7 +18786,7 @@ enum VulnerabilityGrade {
} }
""" """
Represents a vulnerability identifier. Represents a vulnerability identifier
""" """
type VulnerabilityIdentifier { type VulnerabilityIdentifier {
""" """
...@@ -18811,7 +18811,7 @@ type VulnerabilityIdentifier { ...@@ -18811,7 +18811,7 @@ type VulnerabilityIdentifier {
} }
""" """
Represents an issue link of a vulnerability. Represents an issue link of a vulnerability
""" """
type VulnerabilityIssueLink { type VulnerabilityIssueLink {
""" """
...@@ -18866,7 +18866,7 @@ type VulnerabilityIssueLinkEdge { ...@@ -18866,7 +18866,7 @@ type VulnerabilityIssueLinkEdge {
} }
""" """
The type of the issue link related to a vulnerability. The type of the issue link related to a vulnerability
""" """
enum VulnerabilityIssueLinkType { enum VulnerabilityIssueLinkType {
CREATED CREATED
...@@ -19074,7 +19074,7 @@ type VulnerabilityPermissions { ...@@ -19074,7 +19074,7 @@ type VulnerabilityPermissions {
} }
""" """
The type of the security scan that found the vulnerability. The type of the security scan that found the vulnerability
""" """
enum VulnerabilityReportType { enum VulnerabilityReportType {
CONTAINER_SCANNING CONTAINER_SCANNING
...@@ -19086,7 +19086,7 @@ enum VulnerabilityReportType { ...@@ -19086,7 +19086,7 @@ enum VulnerabilityReportType {
} }
""" """
Represents a vulnerability scanner. Represents a vulnerability scanner
""" """
type VulnerabilityScanner { type VulnerabilityScanner {
""" """
...@@ -19181,7 +19181,7 @@ type VulnerabilitySeveritiesCount { ...@@ -19181,7 +19181,7 @@ type VulnerabilitySeveritiesCount {
} }
""" """
The severity of the vulnerability. The severity of the vulnerability
""" """
enum VulnerabilitySeverity { enum VulnerabilitySeverity {
CRITICAL CRITICAL
...@@ -19208,7 +19208,7 @@ enum VulnerabilitySort { ...@@ -19208,7 +19208,7 @@ enum VulnerabilitySort {
} }
""" """
The state of the vulnerability. The state of the vulnerability
""" """
enum VulnerabilityState { enum VulnerabilityState {
CONFIRMED CONFIRMED
......
...@@ -1837,7 +1837,7 @@ ...@@ -1837,7 +1837,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "AwardEmoji", "name": "AwardEmoji",
"description": "An emoji awarded by a user.", "description": "An emoji awarded by a user",
"fields": [ "fields": [
{ {
"name": "description", "name": "description",
...@@ -3894,7 +3894,7 @@ ...@@ -3894,7 +3894,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "BurnupChartDailyTotals", "name": "BurnupChartDailyTotals",
"description": "Represents the total number of issues and their weights for a particular day.", "description": "Represents the total number of issues and their weights for a particular day",
"fields": [ "fields": [
{ {
"name": "completedCount", "name": "completedCount",
...@@ -8544,7 +8544,7 @@ ...@@ -8544,7 +8544,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "DastScannerProfile", "name": "DastScannerProfile",
"description": "Represents a DAST scanner profile.", "description": "Represents a DAST scanner profile",
"fields": [ "fields": [
{ {
"name": "editPath", "name": "editPath",
...@@ -9181,7 +9181,7 @@ ...@@ -9181,7 +9181,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "DastSiteProfile", "name": "DastSiteProfile",
"description": "Represents a DAST Site Profile.", "description": "Represents a DAST Site Profile",
"fields": [ "fields": [
{ {
"name": "editPath", "name": "editPath",
...@@ -9930,7 +9930,7 @@ ...@@ -9930,7 +9930,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "DeleteJobsResponse", "name": "DeleteJobsResponse",
"description": "The response from the AdminSidekiqQueuesDeleteJobs mutation.", "description": "The response from the AdminSidekiqQueuesDeleteJobs mutation",
"fields": [ "fields": [
{ {
"name": "completed", "name": "completed",
...@@ -10446,11 +10446,11 @@ ...@@ -10446,11 +10446,11 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "DesignAtVersion", "name": "DesignAtVersion",
"description": "A design pinned to a specific version. The image field reflects the design as of the associated version.", "description": "A design pinned to a specific version. The image field reflects the design as of the associated version",
"fields": [ "fields": [
{ {
"name": "design", "name": "design",
"description": "The underlying design.", "description": "The underlying design",
"args": [ "args": [
], ],
...@@ -10787,7 +10787,7 @@ ...@@ -10787,7 +10787,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "DesignCollection", "name": "DesignCollection",
"description": "A collection of designs.", "description": "A collection of designs",
"fields": [ "fields": [
{ {
"name": "design", "name": "design",
...@@ -14358,7 +14358,7 @@ ...@@ -14358,7 +14358,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "Epic", "name": "Epic",
"description": "Represents an epic.", "description": "Represents an epic",
"fields": [ "fields": [
{ {
"name": "author", "name": "author",
...@@ -15683,7 +15683,7 @@ ...@@ -15683,7 +15683,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "EpicDescendantCount", "name": "EpicDescendantCount",
"description": "Counts of descendent epics.", "description": "Counts of descendent epics",
"fields": [ "fields": [
{ {
"name": "closedEpics", "name": "closedEpics",
...@@ -17370,7 +17370,7 @@ ...@@ -17370,7 +17370,7 @@
{ {
"kind": "ENUM", "kind": "ENUM",
"name": "EpicState", "name": "EpicState",
"description": "State of an epic.", "description": "State of an epic",
"fields": null, "fields": null,
"inputFields": null, "inputFields": null,
"interfaces": null, "interfaces": null,
...@@ -23989,7 +23989,7 @@ ...@@ -23989,7 +23989,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "IssueStatusCountsType", "name": "IssueStatusCountsType",
"description": "Represents total number of issues for the represented statuses.", "description": "Represents total number of issues for the represented statuses",
"fields": [ "fields": [
{ {
"name": "all", "name": "all",
...@@ -24073,7 +24073,7 @@ ...@@ -24073,7 +24073,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "Iteration", "name": "Iteration",
"description": "Represents an iteration object.", "description": "Represents an iteration object",
"fields": [ "fields": [
{ {
"name": "burnupTimeSeries", "name": "burnupTimeSeries",
...@@ -29481,7 +29481,7 @@ ...@@ -29481,7 +29481,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "Milestone", "name": "Milestone",
"description": "Represents a milestone.", "description": "Represents a milestone",
"fields": [ "fields": [
{ {
"name": "burnupTimeSeries", "name": "burnupTimeSeries",
...@@ -32390,7 +32390,7 @@ ...@@ -32390,7 +32390,7 @@
{ {
"kind": "ENUM", "kind": "ENUM",
"name": "MutationOperationMode", "name": "MutationOperationMode",
"description": "Different toggles for changing mutator behavior.", "description": "Different toggles for changing mutator behavior",
"fields": null, "fields": null,
"inputFields": null, "inputFields": null,
"interfaces": null, "interfaces": null,
...@@ -41556,7 +41556,7 @@ ...@@ -41556,7 +41556,7 @@
{ {
"kind": "ENUM", "kind": "ENUM",
"name": "RegistryState", "name": "RegistryState",
"description": "State of a Geo registry.", "description": "State of a Geo registry",
"fields": null, "fields": null,
"inputFields": null, "inputFields": null,
"interfaces": null, "interfaces": null,
...@@ -43592,7 +43592,7 @@ ...@@ -43592,7 +43592,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "RequirementStatesCount", "name": "RequirementStatesCount",
"description": "Counts of requirements by their state.", "description": "Counts of requirements by their state",
"fields": [ "fields": [
{ {
"name": "archived", "name": "archived",
...@@ -45271,7 +45271,7 @@ ...@@ -45271,7 +45271,7 @@
{ {
"kind": "ENUM", "kind": "ENUM",
"name": "SecurityScannerType", "name": "SecurityScannerType",
"description": "The type of the security scanner.", "description": "The type of the security scanner",
"fields": null, "fields": null,
"inputFields": null, "inputFields": null,
"interfaces": null, "interfaces": null,
...@@ -45397,7 +45397,7 @@ ...@@ -45397,7 +45397,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "SentryDetailedError", "name": "SentryDetailedError",
"description": "A Sentry error.", "description": "A Sentry error",
"fields": [ "fields": [
{ {
"name": "count", "name": "count",
...@@ -45882,7 +45882,7 @@ ...@@ -45882,7 +45882,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "SentryError", "name": "SentryError",
"description": "A Sentry error. A simplified version of SentryDetailedError.", "description": "A Sentry error. A simplified version of SentryDetailedError",
"fields": [ "fields": [
{ {
"name": "count", "name": "count",
...@@ -46205,7 +46205,7 @@ ...@@ -46205,7 +46205,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "SentryErrorCollection", "name": "SentryErrorCollection",
"description": "An object containing a collection of Sentry errors, and a detailed error.", "description": "An object containing a collection of Sentry errors, and a detailed error",
"fields": [ "fields": [
{ {
"name": "detailedError", "name": "detailedError",
...@@ -46317,7 +46317,7 @@ ...@@ -46317,7 +46317,7 @@
}, },
{ {
"name": "sort", "name": "sort",
"description": "Attribute to sort on. Options are frequency, first_seen, last_seen. last_seen is default.", "description": "Attribute to sort on. Options are frequency, first_seen, last_seen. last_seen is default",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "String", "name": "String",
...@@ -46520,7 +46520,7 @@ ...@@ -46520,7 +46520,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "SentryErrorStackTrace", "name": "SentryErrorStackTrace",
"description": "An object containing a stack trace entry for a Sentry error.", "description": "An object containing a stack trace entry for a Sentry error",
"fields": [ "fields": [
{ {
"name": "dateReceived", "name": "dateReceived",
...@@ -46644,7 +46644,7 @@ ...@@ -46644,7 +46644,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "SentryErrorStackTraceEntry", "name": "SentryErrorStackTraceEntry",
"description": "An object containing a stack trace entry for a Sentry error.", "description": "An object containing a stack trace entry for a Sentry error",
"fields": [ "fields": [
{ {
"name": "col", "name": "col",
...@@ -48884,7 +48884,7 @@ ...@@ -48884,7 +48884,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "TestReport", "name": "TestReport",
"description": "Represents a requirement test report.", "description": "Represents a requirement test report",
"fields": [ "fields": [
{ {
"name": "author", "name": "author",
...@@ -54445,7 +54445,7 @@ ...@@ -54445,7 +54445,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "Vulnerability", "name": "Vulnerability",
"description": "Represents a vulnerability.", "description": "Represents a vulnerability",
"fields": [ "fields": [
{ {
"name": "description", "name": "description",
...@@ -54934,7 +54934,7 @@ ...@@ -54934,7 +54934,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "VulnerabilityIdentifier", "name": "VulnerabilityIdentifier",
"description": "Represents a vulnerability identifier.", "description": "Represents a vulnerability identifier",
"fields": [ "fields": [
{ {
"name": "externalId", "name": "externalId",
...@@ -55003,7 +55003,7 @@ ...@@ -55003,7 +55003,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "VulnerabilityIssueLink", "name": "VulnerabilityIssueLink",
"description": "Represents an issue link of a vulnerability.", "description": "Represents an issue link of a vulnerability",
"fields": [ "fields": [
{ {
"name": "id", "name": "id",
...@@ -55182,7 +55182,7 @@ ...@@ -55182,7 +55182,7 @@
{ {
"kind": "ENUM", "kind": "ENUM",
"name": "VulnerabilityIssueLinkType", "name": "VulnerabilityIssueLinkType",
"description": "The type of the issue link related to a vulnerability.", "description": "The type of the issue link related to a vulnerability",
"fields": null, "fields": null,
"inputFields": null, "inputFields": null,
"interfaces": null, "interfaces": null,
...@@ -55817,7 +55817,7 @@ ...@@ -55817,7 +55817,7 @@
{ {
"kind": "ENUM", "kind": "ENUM",
"name": "VulnerabilityReportType", "name": "VulnerabilityReportType",
"description": "The type of the security scan that found the vulnerability.", "description": "The type of the security scan that found the vulnerability",
"fields": null, "fields": null,
"inputFields": null, "inputFields": null,
"interfaces": null, "interfaces": null,
...@@ -55864,7 +55864,7 @@ ...@@ -55864,7 +55864,7 @@
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "VulnerabilityScanner", "name": "VulnerabilityScanner",
"description": "Represents a vulnerability scanner.", "description": "Represents a vulnerability scanner",
"fields": [ "fields": [
{ {
"name": "externalId", "name": "externalId",
...@@ -56142,7 +56142,7 @@ ...@@ -56142,7 +56142,7 @@
{ {
"kind": "ENUM", "kind": "ENUM",
"name": "VulnerabilitySeverity", "name": "VulnerabilitySeverity",
"description": "The severity of the vulnerability.", "description": "The severity of the vulnerability",
"fields": null, "fields": null,
"inputFields": null, "inputFields": null,
"interfaces": null, "interfaces": null,
...@@ -56212,7 +56212,7 @@ ...@@ -56212,7 +56212,7 @@
{ {
"kind": "ENUM", "kind": "ENUM",
"name": "VulnerabilityState", "name": "VulnerabilityState",
"description": "The state of the vulnerability.", "description": "The state of the vulnerability",
"fields": null, "fields": null,
"inputFields": null, "inputFields": null,
"interfaces": null, "interfaces": null,
...@@ -29,7 +29,7 @@ on `graphql.org`. ...@@ -29,7 +29,7 @@ on `graphql.org`.
### AccessLevel ### AccessLevel
Represents the access level of a relationship between a User and object that it is related to Represents the access level of a relationship between a User and object that it is related to.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -38,7 +38,7 @@ Represents the access level of a relationship between a User and object that it ...@@ -38,7 +38,7 @@ Represents the access level of a relationship between a User and object that it
### AddAwardEmojiPayload ### AddAwardEmojiPayload
Autogenerated return type of AddAwardEmoji Autogenerated return type of AddAwardEmoji.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -48,7 +48,7 @@ Autogenerated return type of AddAwardEmoji ...@@ -48,7 +48,7 @@ Autogenerated return type of AddAwardEmoji
### AddProjectToSecurityDashboardPayload ### AddProjectToSecurityDashboardPayload
Autogenerated return type of AddProjectToSecurityDashboard Autogenerated return type of AddProjectToSecurityDashboard.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -58,7 +58,7 @@ Autogenerated return type of AddProjectToSecurityDashboard ...@@ -58,7 +58,7 @@ Autogenerated return type of AddProjectToSecurityDashboard
### AdminSidekiqQueuesDeleteJobsPayload ### AdminSidekiqQueuesDeleteJobsPayload
Autogenerated return type of AdminSidekiqQueuesDeleteJobs Autogenerated return type of AdminSidekiqQueuesDeleteJobs.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -68,7 +68,7 @@ Autogenerated return type of AdminSidekiqQueuesDeleteJobs ...@@ -68,7 +68,7 @@ Autogenerated return type of AdminSidekiqQueuesDeleteJobs
### AlertManagementAlert ### AlertManagementAlert
Describes an alert from the project's Alert Management Describes an alert from the project's Alert Management.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -94,7 +94,7 @@ Describes an alert from the project's Alert Management ...@@ -94,7 +94,7 @@ Describes an alert from the project's Alert Management
### AlertManagementAlertStatusCountsType ### AlertManagementAlertStatusCountsType
Represents total number of alerts for the represented categories Represents total number of alerts for the represented categories.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -107,7 +107,7 @@ Represents total number of alerts for the represented categories ...@@ -107,7 +107,7 @@ Represents total number of alerts for the represented categories
### AlertSetAssigneesPayload ### AlertSetAssigneesPayload
Autogenerated return type of AlertSetAssignees Autogenerated return type of AlertSetAssignees.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -119,7 +119,7 @@ Autogenerated return type of AlertSetAssignees ...@@ -119,7 +119,7 @@ Autogenerated return type of AlertSetAssignees
### AlertTodoCreatePayload ### AlertTodoCreatePayload
Autogenerated return type of AlertTodoCreate Autogenerated return type of AlertTodoCreate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -144,7 +144,7 @@ An emoji awarded by a user. ...@@ -144,7 +144,7 @@ An emoji awarded by a user.
### AwardEmojiAddPayload ### AwardEmojiAddPayload
Autogenerated return type of AwardEmojiAdd Autogenerated return type of AwardEmojiAdd.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -154,7 +154,7 @@ Autogenerated return type of AwardEmojiAdd ...@@ -154,7 +154,7 @@ Autogenerated return type of AwardEmojiAdd
### AwardEmojiRemovePayload ### AwardEmojiRemovePayload
Autogenerated return type of AwardEmojiRemove Autogenerated return type of AwardEmojiRemove.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -164,7 +164,7 @@ Autogenerated return type of AwardEmojiRemove ...@@ -164,7 +164,7 @@ Autogenerated return type of AwardEmojiRemove
### AwardEmojiTogglePayload ### AwardEmojiTogglePayload
Autogenerated return type of AwardEmojiToggle Autogenerated return type of AwardEmojiToggle.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -197,7 +197,7 @@ Autogenerated return type of AwardEmojiToggle ...@@ -197,7 +197,7 @@ Autogenerated return type of AwardEmojiToggle
### Board ### Board
Represents a project or group board Represents a project or group board.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -211,7 +211,7 @@ Represents a project or group board ...@@ -211,7 +211,7 @@ Represents a project or group board
### BoardList ### BoardList
Represents a list for an issue board Represents a list for an issue board.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -231,7 +231,7 @@ Represents a list for an issue board ...@@ -231,7 +231,7 @@ Represents a list for an issue board
### BoardListCreatePayload ### BoardListCreatePayload
Autogenerated return type of BoardListCreate Autogenerated return type of BoardListCreate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -241,7 +241,7 @@ Autogenerated return type of BoardListCreate ...@@ -241,7 +241,7 @@ Autogenerated return type of BoardListCreate
### BoardListUpdateLimitMetricsPayload ### BoardListUpdateLimitMetricsPayload
Autogenerated return type of BoardListUpdateLimitMetrics Autogenerated return type of BoardListUpdateLimitMetrics.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -299,7 +299,7 @@ Represents the total number of issues and their weights for a particular day. ...@@ -299,7 +299,7 @@ Represents the total number of issues and their weights for a particular day.
### ClusterAgentDeletePayload ### ClusterAgentDeletePayload
Autogenerated return type of ClusterAgentDelete Autogenerated return type of ClusterAgentDelete.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -316,7 +316,7 @@ Autogenerated return type of ClusterAgentDelete ...@@ -316,7 +316,7 @@ Autogenerated return type of ClusterAgentDelete
### ClusterAgentTokenCreatePayload ### ClusterAgentTokenCreatePayload
Autogenerated return type of ClusterAgentTokenCreate Autogenerated return type of ClusterAgentTokenCreate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -327,7 +327,7 @@ Autogenerated return type of ClusterAgentTokenCreate ...@@ -327,7 +327,7 @@ Autogenerated return type of ClusterAgentTokenCreate
### ClusterAgentTokenDeletePayload ### ClusterAgentTokenDeletePayload
Autogenerated return type of ClusterAgentTokenDelete Autogenerated return type of ClusterAgentTokenDelete.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -356,7 +356,7 @@ Autogenerated return type of ClusterAgentTokenDelete ...@@ -356,7 +356,7 @@ Autogenerated return type of ClusterAgentTokenDelete
### CommitCreatePayload ### CommitCreatePayload
Autogenerated return type of CommitCreate Autogenerated return type of CommitCreate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -366,7 +366,7 @@ Autogenerated return type of CommitCreate ...@@ -366,7 +366,7 @@ Autogenerated return type of CommitCreate
### ComplianceFramework ### ComplianceFramework
Represents a ComplianceFramework associated with a Project Represents a ComplianceFramework associated with a Project.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -374,7 +374,7 @@ Represents a ComplianceFramework associated with a Project ...@@ -374,7 +374,7 @@ Represents a ComplianceFramework associated with a Project
### ConfigureSastPayload ### ConfigureSastPayload
Autogenerated return type of ConfigureSast Autogenerated return type of ConfigureSast.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -385,7 +385,7 @@ Autogenerated return type of ConfigureSast ...@@ -385,7 +385,7 @@ Autogenerated return type of ConfigureSast
### ContainerExpirationPolicy ### ContainerExpirationPolicy
A tag expiration policy designed to keep only the images that matter most A tag expiration policy designed to keep only the images that matter most.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -401,7 +401,7 @@ A tag expiration policy designed to keep only the images that matter most ...@@ -401,7 +401,7 @@ A tag expiration policy designed to keep only the images that matter most
### CreateAlertIssuePayload ### CreateAlertIssuePayload
Autogenerated return type of CreateAlertIssue Autogenerated return type of CreateAlertIssue.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -413,7 +413,7 @@ Autogenerated return type of CreateAlertIssue ...@@ -413,7 +413,7 @@ Autogenerated return type of CreateAlertIssue
### CreateAnnotationPayload ### CreateAnnotationPayload
Autogenerated return type of CreateAnnotation Autogenerated return type of CreateAnnotation.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -423,7 +423,7 @@ Autogenerated return type of CreateAnnotation ...@@ -423,7 +423,7 @@ Autogenerated return type of CreateAnnotation
### CreateBranchPayload ### CreateBranchPayload
Autogenerated return type of CreateBranch Autogenerated return type of CreateBranch.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -433,7 +433,7 @@ Autogenerated return type of CreateBranch ...@@ -433,7 +433,7 @@ Autogenerated return type of CreateBranch
### CreateClusterAgentPayload ### CreateClusterAgentPayload
Autogenerated return type of CreateClusterAgent Autogenerated return type of CreateClusterAgent.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -443,7 +443,7 @@ Autogenerated return type of CreateClusterAgent ...@@ -443,7 +443,7 @@ Autogenerated return type of CreateClusterAgent
### CreateDiffNotePayload ### CreateDiffNotePayload
Autogenerated return type of CreateDiffNote Autogenerated return type of CreateDiffNote.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -453,7 +453,7 @@ Autogenerated return type of CreateDiffNote ...@@ -453,7 +453,7 @@ Autogenerated return type of CreateDiffNote
### CreateEpicPayload ### CreateEpicPayload
Autogenerated return type of CreateEpic Autogenerated return type of CreateEpic.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -463,7 +463,7 @@ Autogenerated return type of CreateEpic ...@@ -463,7 +463,7 @@ Autogenerated return type of CreateEpic
### CreateImageDiffNotePayload ### CreateImageDiffNotePayload
Autogenerated return type of CreateImageDiffNote Autogenerated return type of CreateImageDiffNote.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -473,7 +473,7 @@ Autogenerated return type of CreateImageDiffNote ...@@ -473,7 +473,7 @@ Autogenerated return type of CreateImageDiffNote
### CreateIterationPayload ### CreateIterationPayload
Autogenerated return type of CreateIteration Autogenerated return type of CreateIteration.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -483,7 +483,7 @@ Autogenerated return type of CreateIteration ...@@ -483,7 +483,7 @@ Autogenerated return type of CreateIteration
### CreateNotePayload ### CreateNotePayload
Autogenerated return type of CreateNote Autogenerated return type of CreateNote.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -493,7 +493,7 @@ Autogenerated return type of CreateNote ...@@ -493,7 +493,7 @@ Autogenerated return type of CreateNote
### CreateRequirementPayload ### CreateRequirementPayload
Autogenerated return type of CreateRequirement Autogenerated return type of CreateRequirement.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -503,7 +503,7 @@ Autogenerated return type of CreateRequirement ...@@ -503,7 +503,7 @@ Autogenerated return type of CreateRequirement
### CreateSnippetPayload ### CreateSnippetPayload
Autogenerated return type of CreateSnippet Autogenerated return type of CreateSnippet.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -513,7 +513,7 @@ Autogenerated return type of CreateSnippet ...@@ -513,7 +513,7 @@ Autogenerated return type of CreateSnippet
### CreateTestCasePayload ### CreateTestCasePayload
Autogenerated return type of CreateTestCase Autogenerated return type of CreateTestCase.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -523,7 +523,7 @@ Autogenerated return type of CreateTestCase ...@@ -523,7 +523,7 @@ Autogenerated return type of CreateTestCase
### DastOnDemandScanCreatePayload ### DastOnDemandScanCreatePayload
Autogenerated return type of DastOnDemandScanCreate Autogenerated return type of DastOnDemandScanCreate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -546,7 +546,7 @@ Represents a DAST scanner profile. ...@@ -546,7 +546,7 @@ Represents a DAST scanner profile.
### DastScannerProfileCreatePayload ### DastScannerProfileCreatePayload
Autogenerated return type of DastScannerProfileCreate Autogenerated return type of DastScannerProfileCreate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -557,7 +557,7 @@ Autogenerated return type of DastScannerProfileCreate ...@@ -557,7 +557,7 @@ Autogenerated return type of DastScannerProfileCreate
### DastScannerProfileDeletePayload ### DastScannerProfileDeletePayload
Autogenerated return type of DastScannerProfileDelete Autogenerated return type of DastScannerProfileDelete.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -566,7 +566,7 @@ Autogenerated return type of DastScannerProfileDelete ...@@ -566,7 +566,7 @@ Autogenerated return type of DastScannerProfileDelete
### DastScannerProfileUpdatePayload ### DastScannerProfileUpdatePayload
Autogenerated return type of DastScannerProfileUpdate Autogenerated return type of DastScannerProfileUpdate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -589,7 +589,7 @@ Represents a DAST Site Profile. ...@@ -589,7 +589,7 @@ Represents a DAST Site Profile.
### DastSiteProfileCreatePayload ### DastSiteProfileCreatePayload
Autogenerated return type of DastSiteProfileCreate Autogenerated return type of DastSiteProfileCreate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -599,7 +599,7 @@ Autogenerated return type of DastSiteProfileCreate ...@@ -599,7 +599,7 @@ Autogenerated return type of DastSiteProfileCreate
### DastSiteProfileDeletePayload ### DastSiteProfileDeletePayload
Autogenerated return type of DastSiteProfileDelete Autogenerated return type of DastSiteProfileDelete.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -608,7 +608,7 @@ Autogenerated return type of DastSiteProfileDelete ...@@ -608,7 +608,7 @@ Autogenerated return type of DastSiteProfileDelete
### DastSiteProfilePermissions ### DastSiteProfilePermissions
Check permissions for the current user on site profile Check permissions for the current user on site profile.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -616,7 +616,7 @@ Check permissions for the current user on site profile ...@@ -616,7 +616,7 @@ Check permissions for the current user on site profile
### DastSiteProfileUpdatePayload ### DastSiteProfileUpdatePayload
Autogenerated return type of DastSiteProfileUpdate Autogenerated return type of DastSiteProfileUpdate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -626,7 +626,7 @@ Autogenerated return type of DastSiteProfileUpdate ...@@ -626,7 +626,7 @@ Autogenerated return type of DastSiteProfileUpdate
### DeleteAnnotationPayload ### DeleteAnnotationPayload
Autogenerated return type of DeleteAnnotation Autogenerated return type of DeleteAnnotation.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -645,7 +645,7 @@ The response from the AdminSidekiqQueuesDeleteJobs mutation. ...@@ -645,7 +645,7 @@ The response from the AdminSidekiqQueuesDeleteJobs mutation.
### Design ### Design
A single design A single design.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -666,7 +666,7 @@ A design pinned to a specific version. The image field reflects the design as of ...@@ -666,7 +666,7 @@ A design pinned to a specific version. The image field reflects the design as of
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
| `design` | Design! | The underlying design. | | `design` | Design! | The underlying design |
| `diffRefs` | DiffRefs! | The diff refs for this design | | `diffRefs` | DiffRefs! | The diff refs for this design |
| `event` | DesignVersionEvent! | How this design was changed in the current version | | `event` | DesignVersionEvent! | How this design was changed in the current version |
| `filename` | String! | The filename of the design | | `filename` | String! | The filename of the design |
...@@ -700,7 +700,7 @@ A collection of designs. ...@@ -700,7 +700,7 @@ A collection of designs.
### DesignManagementDeletePayload ### DesignManagementDeletePayload
Autogenerated return type of DesignManagementDelete Autogenerated return type of DesignManagementDelete.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -710,7 +710,7 @@ Autogenerated return type of DesignManagementDelete ...@@ -710,7 +710,7 @@ Autogenerated return type of DesignManagementDelete
### DesignManagementMovePayload ### DesignManagementMovePayload
Autogenerated return type of DesignManagementMove Autogenerated return type of DesignManagementMove.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -720,7 +720,7 @@ Autogenerated return type of DesignManagementMove ...@@ -720,7 +720,7 @@ Autogenerated return type of DesignManagementMove
### DesignManagementUploadPayload ### DesignManagementUploadPayload
Autogenerated return type of DesignManagementUpload Autogenerated return type of DesignManagementUpload.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -731,7 +731,7 @@ Autogenerated return type of DesignManagementUpload ...@@ -731,7 +731,7 @@ Autogenerated return type of DesignManagementUpload
### DesignVersion ### DesignVersion
A specific version in which designs were added, modified or deleted A specific version in which designs were added, modified or deleted.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -741,7 +741,7 @@ A specific version in which designs were added, modified or deleted ...@@ -741,7 +741,7 @@ A specific version in which designs were added, modified or deleted
### DestroyBoardPayload ### DestroyBoardPayload
Autogenerated return type of DestroyBoard Autogenerated return type of DestroyBoard.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -751,7 +751,7 @@ Autogenerated return type of DestroyBoard ...@@ -751,7 +751,7 @@ Autogenerated return type of DestroyBoard
### DestroyNotePayload ### DestroyNotePayload
Autogenerated return type of DestroyNote Autogenerated return type of DestroyNote.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -761,7 +761,7 @@ Autogenerated return type of DestroyNote ...@@ -761,7 +761,7 @@ Autogenerated return type of DestroyNote
### DestroySnippetPayload ### DestroySnippetPayload
Autogenerated return type of DestroySnippet Autogenerated return type of DestroySnippet.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -808,7 +808,7 @@ Autogenerated return type of DestroySnippet ...@@ -808,7 +808,7 @@ Autogenerated return type of DestroySnippet
### DiffStats ### DiffStats
Changes to a single file Changes to a single file.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -818,7 +818,7 @@ Changes to a single file ...@@ -818,7 +818,7 @@ Changes to a single file
### DiffStatsSummary ### DiffStatsSummary
Aggregated summary of changes Aggregated summary of changes.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -841,7 +841,7 @@ Aggregated summary of changes ...@@ -841,7 +841,7 @@ Aggregated summary of changes
### DiscussionToggleResolvePayload ### DiscussionToggleResolvePayload
Autogenerated return type of DiscussionToggleResolve Autogenerated return type of DiscussionToggleResolve.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -851,7 +851,7 @@ Autogenerated return type of DiscussionToggleResolve ...@@ -851,7 +851,7 @@ Autogenerated return type of DiscussionToggleResolve
### DismissVulnerabilityPayload ### DismissVulnerabilityPayload
Autogenerated return type of DismissVulnerability Autogenerated return type of DismissVulnerability.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -861,7 +861,7 @@ Autogenerated return type of DismissVulnerability ...@@ -861,7 +861,7 @@ Autogenerated return type of DismissVulnerability
### Environment ### Environment
Describes where code is deployed for a project Describes where code is deployed for a project.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -915,7 +915,7 @@ Represents an epic. ...@@ -915,7 +915,7 @@ Represents an epic.
### EpicAddIssuePayload ### EpicAddIssuePayload
Autogenerated return type of EpicAddIssue Autogenerated return type of EpicAddIssue.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -937,7 +937,7 @@ Counts of descendent epics. ...@@ -937,7 +937,7 @@ Counts of descendent epics.
### EpicDescendantWeights ### EpicDescendantWeights
Total weight of open and closed descendant issues Total weight of open and closed descendant issues.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -946,7 +946,7 @@ Total weight of open and closed descendant issues ...@@ -946,7 +946,7 @@ Total weight of open and closed descendant issues
### EpicHealthStatus ### EpicHealthStatus
Health status of child issues Health status of child issues.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -956,7 +956,7 @@ Health status of child issues ...@@ -956,7 +956,7 @@ Health status of child issues
### EpicIssue ### EpicIssue
Relationship between an epic and an issue Relationship between an epic and an issue.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1003,7 +1003,7 @@ Relationship between an epic and an issue ...@@ -1003,7 +1003,7 @@ Relationship between an epic and an issue
### EpicPermissions ### EpicPermissions
Check permissions for the current user on an epic Check permissions for the current user on an epic.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1018,7 +1018,7 @@ Check permissions for the current user on an epic ...@@ -1018,7 +1018,7 @@ Check permissions for the current user on an epic
### EpicSetSubscriptionPayload ### EpicSetSubscriptionPayload
Autogenerated return type of EpicSetSubscription Autogenerated return type of EpicSetSubscription.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1028,7 +1028,7 @@ Autogenerated return type of EpicSetSubscription ...@@ -1028,7 +1028,7 @@ Autogenerated return type of EpicSetSubscription
### EpicTreeReorderPayload ### EpicTreeReorderPayload
Autogenerated return type of EpicTreeReorder Autogenerated return type of EpicTreeReorder.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1105,7 +1105,7 @@ Autogenerated return type of EpicTreeReorder ...@@ -1105,7 +1105,7 @@ Autogenerated return type of EpicTreeReorder
### GroupMember ### GroupMember
Represents a Group Membership Represents a Group Membership.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1134,7 +1134,7 @@ Represents a Group Membership ...@@ -1134,7 +1134,7 @@ Represents a Group Membership
### InstanceStatisticsMeasurement ### InstanceStatisticsMeasurement
Represents a recorded measurement (object count) for the Admins Represents a recorded measurement (object count) for the Admins.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1187,7 +1187,7 @@ Represents a recorded measurement (object count) for the Admins ...@@ -1187,7 +1187,7 @@ Represents a recorded measurement (object count) for the Admins
### IssueMoveListPayload ### IssueMoveListPayload
Autogenerated return type of IssueMoveList Autogenerated return type of IssueMoveList.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1197,7 +1197,7 @@ Autogenerated return type of IssueMoveList ...@@ -1197,7 +1197,7 @@ Autogenerated return type of IssueMoveList
### IssuePermissions ### IssuePermissions
Check permissions for the current user on a issue Check permissions for the current user on a issue.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1212,7 +1212,7 @@ Check permissions for the current user on a issue ...@@ -1212,7 +1212,7 @@ Check permissions for the current user on a issue
### IssueSetAssigneesPayload ### IssueSetAssigneesPayload
Autogenerated return type of IssueSetAssignees Autogenerated return type of IssueSetAssignees.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1222,7 +1222,7 @@ Autogenerated return type of IssueSetAssignees ...@@ -1222,7 +1222,7 @@ Autogenerated return type of IssueSetAssignees
### IssueSetConfidentialPayload ### IssueSetConfidentialPayload
Autogenerated return type of IssueSetConfidential Autogenerated return type of IssueSetConfidential.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1232,7 +1232,7 @@ Autogenerated return type of IssueSetConfidential ...@@ -1232,7 +1232,7 @@ Autogenerated return type of IssueSetConfidential
### IssueSetDueDatePayload ### IssueSetDueDatePayload
Autogenerated return type of IssueSetDueDate Autogenerated return type of IssueSetDueDate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1242,7 +1242,7 @@ Autogenerated return type of IssueSetDueDate ...@@ -1242,7 +1242,7 @@ Autogenerated return type of IssueSetDueDate
### IssueSetEpicPayload ### IssueSetEpicPayload
Autogenerated return type of IssueSetEpic Autogenerated return type of IssueSetEpic.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1252,7 +1252,7 @@ Autogenerated return type of IssueSetEpic ...@@ -1252,7 +1252,7 @@ Autogenerated return type of IssueSetEpic
### IssueSetIterationPayload ### IssueSetIterationPayload
Autogenerated return type of IssueSetIteration Autogenerated return type of IssueSetIteration.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1262,7 +1262,7 @@ Autogenerated return type of IssueSetIteration ...@@ -1262,7 +1262,7 @@ Autogenerated return type of IssueSetIteration
### IssueSetLockedPayload ### IssueSetLockedPayload
Autogenerated return type of IssueSetLocked Autogenerated return type of IssueSetLocked.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1272,7 +1272,7 @@ Autogenerated return type of IssueSetLocked ...@@ -1272,7 +1272,7 @@ Autogenerated return type of IssueSetLocked
### IssueSetSeverityPayload ### IssueSetSeverityPayload
Autogenerated return type of IssueSetSeverity Autogenerated return type of IssueSetSeverity.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1282,7 +1282,7 @@ Autogenerated return type of IssueSetSeverity ...@@ -1282,7 +1282,7 @@ Autogenerated return type of IssueSetSeverity
### IssueSetSubscriptionPayload ### IssueSetSubscriptionPayload
Autogenerated return type of IssueSetSubscription Autogenerated return type of IssueSetSubscription.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1292,7 +1292,7 @@ Autogenerated return type of IssueSetSubscription ...@@ -1292,7 +1292,7 @@ Autogenerated return type of IssueSetSubscription
### IssueSetWeightPayload ### IssueSetWeightPayload
Autogenerated return type of IssueSetWeight Autogenerated return type of IssueSetWeight.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1346,7 +1346,7 @@ Represents an iteration object. ...@@ -1346,7 +1346,7 @@ Represents an iteration object.
### JiraImportStartPayload ### JiraImportStartPayload
Autogenerated return type of JiraImportStart Autogenerated return type of JiraImportStart.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1356,7 +1356,7 @@ Autogenerated return type of JiraImportStart ...@@ -1356,7 +1356,7 @@ Autogenerated return type of JiraImportStart
### JiraImportUsersPayload ### JiraImportUsersPayload
Autogenerated return type of JiraImportUsers Autogenerated return type of JiraImportUsers.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1403,7 +1403,7 @@ Autogenerated return type of JiraImportUsers ...@@ -1403,7 +1403,7 @@ Autogenerated return type of JiraImportUsers
### MarkAsSpamSnippetPayload ### MarkAsSpamSnippetPayload
Autogenerated return type of MarkAsSpamSnippet Autogenerated return type of MarkAsSpamSnippet.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1476,7 +1476,7 @@ Autogenerated return type of MarkAsSpamSnippet ...@@ -1476,7 +1476,7 @@ Autogenerated return type of MarkAsSpamSnippet
### MergeRequestCreatePayload ### MergeRequestCreatePayload
Autogenerated return type of MergeRequestCreate Autogenerated return type of MergeRequestCreate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1486,7 +1486,7 @@ Autogenerated return type of MergeRequestCreate ...@@ -1486,7 +1486,7 @@ Autogenerated return type of MergeRequestCreate
### MergeRequestPermissions ### MergeRequestPermissions
Check permissions for the current user on a merge request Check permissions for the current user on a merge request.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1502,7 +1502,7 @@ Check permissions for the current user on a merge request ...@@ -1502,7 +1502,7 @@ Check permissions for the current user on a merge request
### MergeRequestSetAssigneesPayload ### MergeRequestSetAssigneesPayload
Autogenerated return type of MergeRequestSetAssignees Autogenerated return type of MergeRequestSetAssignees.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1512,7 +1512,7 @@ Autogenerated return type of MergeRequestSetAssignees ...@@ -1512,7 +1512,7 @@ Autogenerated return type of MergeRequestSetAssignees
### MergeRequestSetLabelsPayload ### MergeRequestSetLabelsPayload
Autogenerated return type of MergeRequestSetLabels Autogenerated return type of MergeRequestSetLabels.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1522,7 +1522,7 @@ Autogenerated return type of MergeRequestSetLabels ...@@ -1522,7 +1522,7 @@ Autogenerated return type of MergeRequestSetLabels
### MergeRequestSetLockedPayload ### MergeRequestSetLockedPayload
Autogenerated return type of MergeRequestSetLocked Autogenerated return type of MergeRequestSetLocked.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1532,7 +1532,7 @@ Autogenerated return type of MergeRequestSetLocked ...@@ -1532,7 +1532,7 @@ Autogenerated return type of MergeRequestSetLocked
### MergeRequestSetMilestonePayload ### MergeRequestSetMilestonePayload
Autogenerated return type of MergeRequestSetMilestone Autogenerated return type of MergeRequestSetMilestone.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1542,7 +1542,7 @@ Autogenerated return type of MergeRequestSetMilestone ...@@ -1542,7 +1542,7 @@ Autogenerated return type of MergeRequestSetMilestone
### MergeRequestSetSubscriptionPayload ### MergeRequestSetSubscriptionPayload
Autogenerated return type of MergeRequestSetSubscription Autogenerated return type of MergeRequestSetSubscription.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1552,7 +1552,7 @@ Autogenerated return type of MergeRequestSetSubscription ...@@ -1552,7 +1552,7 @@ Autogenerated return type of MergeRequestSetSubscription
### MergeRequestSetWipPayload ### MergeRequestSetWipPayload
Autogenerated return type of MergeRequestSetWip Autogenerated return type of MergeRequestSetWip.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1562,7 +1562,7 @@ Autogenerated return type of MergeRequestSetWip ...@@ -1562,7 +1562,7 @@ Autogenerated return type of MergeRequestSetWip
### MergeRequestUpdatePayload ### MergeRequestUpdatePayload
Autogenerated return type of MergeRequestUpdate Autogenerated return type of MergeRequestUpdate.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1617,7 +1617,7 @@ Represents a milestone. ...@@ -1617,7 +1617,7 @@ Represents a milestone.
### MilestoneStats ### MilestoneStats
Contains statistics about a milestone Contains statistics about a milestone.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1645,7 +1645,7 @@ Contains statistics about a milestone ...@@ -1645,7 +1645,7 @@ Contains statistics about a milestone
### NamespaceIncreaseStorageTemporarilyPayload ### NamespaceIncreaseStorageTemporarilyPayload
Autogenerated return type of NamespaceIncreaseStorageTemporarily Autogenerated return type of NamespaceIncreaseStorageTemporarily.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1687,7 +1687,7 @@ Autogenerated return type of NamespaceIncreaseStorageTemporarily ...@@ -1687,7 +1687,7 @@ Autogenerated return type of NamespaceIncreaseStorageTemporarily
### Package ### Package
Represents a package Represents a package.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1700,7 +1700,7 @@ Represents a package ...@@ -1700,7 +1700,7 @@ Represents a package
### PackageFileRegistry ### PackageFileRegistry
Represents the sync and verification state of a package file Represents the sync and verification state of a package file.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1715,7 +1715,7 @@ Represents the sync and verification state of a package file ...@@ -1715,7 +1715,7 @@ Represents the sync and verification state of a package file
### PageInfo ### PageInfo
Information about pagination in a connection. Information about pagination in a connection..
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1750,7 +1750,7 @@ Information about pagination in a connection. ...@@ -1750,7 +1750,7 @@ Information about pagination in a connection.
### PipelineCancelPayload ### PipelineCancelPayload
Autogenerated return type of PipelineCancel Autogenerated return type of PipelineCancel.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1759,7 +1759,7 @@ Autogenerated return type of PipelineCancel ...@@ -1759,7 +1759,7 @@ Autogenerated return type of PipelineCancel
### PipelineDestroyPayload ### PipelineDestroyPayload
Autogenerated return type of PipelineDestroy Autogenerated return type of PipelineDestroy.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1776,7 +1776,7 @@ Autogenerated return type of PipelineDestroy ...@@ -1776,7 +1776,7 @@ Autogenerated return type of PipelineDestroy
### PipelineRetryPayload ### PipelineRetryPayload
Autogenerated return type of PipelineRetry Autogenerated return type of PipelineRetry.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1859,7 +1859,7 @@ Autogenerated return type of PipelineRetry ...@@ -1859,7 +1859,7 @@ Autogenerated return type of PipelineRetry
### ProjectMember ### ProjectMember
Represents a Project Membership Represents a Project Membership.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1935,7 +1935,7 @@ Represents a Project Membership ...@@ -1935,7 +1935,7 @@ Represents a Project Membership
### PrometheusAlert ### PrometheusAlert
The alert condition for Prometheus The alert condition for Prometheus.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1944,7 +1944,7 @@ The alert condition for Prometheus ...@@ -1944,7 +1944,7 @@ The alert condition for Prometheus
### Release ### Release
Represents a release Represents a release.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1963,7 +1963,7 @@ Represents a release ...@@ -1963,7 +1963,7 @@ Represents a release
### ReleaseAssetLink ### ReleaseAssetLink
Represents an asset link associated with a release Represents an asset link associated with a release.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1976,7 +1976,7 @@ Represents an asset link associated with a release ...@@ -1976,7 +1976,7 @@ Represents an asset link associated with a release
### ReleaseAssets ### ReleaseAssets
A container for all assets associated with a release A container for all assets associated with a release.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -1984,7 +1984,7 @@ A container for all assets associated with a release ...@@ -1984,7 +1984,7 @@ A container for all assets associated with a release
### ReleaseEvidence ### ReleaseEvidence
Evidence for a release Evidence for a release.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2004,7 +2004,7 @@ Evidence for a release ...@@ -2004,7 +2004,7 @@ Evidence for a release
### ReleaseSource ### ReleaseSource
Represents the source code attached to a release in a particular format Represents the source code attached to a release in a particular format.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2013,7 +2013,7 @@ Represents the source code attached to a release in a particular format ...@@ -2013,7 +2013,7 @@ Represents the source code attached to a release in a particular format
### RemoveAwardEmojiPayload ### RemoveAwardEmojiPayload
Autogenerated return type of RemoveAwardEmoji Autogenerated return type of RemoveAwardEmoji.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2023,7 +2023,7 @@ Autogenerated return type of RemoveAwardEmoji ...@@ -2023,7 +2023,7 @@ Autogenerated return type of RemoveAwardEmoji
### RemoveProjectFromSecurityDashboardPayload ### RemoveProjectFromSecurityDashboardPayload
Autogenerated return type of RemoveProjectFromSecurityDashboard Autogenerated return type of RemoveProjectFromSecurityDashboard.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2041,7 +2041,7 @@ Autogenerated return type of RemoveProjectFromSecurityDashboard ...@@ -2041,7 +2041,7 @@ Autogenerated return type of RemoveProjectFromSecurityDashboard
### Requirement ### Requirement
Represents a requirement Represents a requirement.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2058,7 +2058,7 @@ Represents a requirement ...@@ -2058,7 +2058,7 @@ Represents a requirement
### RequirementPermissions ### RequirementPermissions
Check permissions for the current user on a requirement Check permissions for the current user on a requirement.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2091,7 +2091,7 @@ Counts of requirements by their state. ...@@ -2091,7 +2091,7 @@ Counts of requirements by their state.
### RunDASTScanPayload ### RunDASTScanPayload
Autogenerated return type of RunDASTScan Autogenerated return type of RunDASTScan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2101,7 +2101,7 @@ Autogenerated return type of RunDASTScan ...@@ -2101,7 +2101,7 @@ Autogenerated return type of RunDASTScan
### SastCiConfigurationAnalyzersEntity ### SastCiConfigurationAnalyzersEntity
Represents an analyzer entity in SAST CI configuration Represents an analyzer entity in SAST CI configuration.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2112,7 +2112,7 @@ Represents an analyzer entity in SAST CI configuration ...@@ -2112,7 +2112,7 @@ Represents an analyzer entity in SAST CI configuration
### SastCiConfigurationEntity ### SastCiConfigurationEntity
Represents an entity in SAST CI configuration Represents an entity in SAST CI configuration.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2126,7 +2126,7 @@ Represents an entity in SAST CI configuration ...@@ -2126,7 +2126,7 @@ Represents an entity in SAST CI configuration
### SastCiConfigurationOptionsEntity ### SastCiConfigurationOptionsEntity
Represents an entity for options in SAST CI configuration Represents an entity for options in SAST CI configuration.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2135,7 +2135,7 @@ Represents an entity for options in SAST CI configuration ...@@ -2135,7 +2135,7 @@ Represents an entity for options in SAST CI configuration
### ScannedResource ### ScannedResource
Represents a resource scanned by a security scan Represents a resource scanned by a security scan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2144,7 +2144,7 @@ Represents a resource scanned by a security scan ...@@ -2144,7 +2144,7 @@ Represents a resource scanned by a security scan
### SecurityReportSummary ### SecurityReportSummary
Represents summary of a security report Represents summary of a security report.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2157,7 +2157,7 @@ Represents summary of a security report ...@@ -2157,7 +2157,7 @@ Represents summary of a security report
### SecurityReportSummarySection ### SecurityReportSummarySection
Represents a section of a summary of a security report Represents a section of a summary of a security report.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2167,7 +2167,7 @@ Represents a section of a summary of a security report ...@@ -2167,7 +2167,7 @@ Represents a section of a summary of a security report
### SecurityScanners ### SecurityScanners
Represents a list of security scanners Represents a list of security scanners.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2264,7 +2264,7 @@ An object containing a stack trace entry for a Sentry error. ...@@ -2264,7 +2264,7 @@ An object containing a stack trace entry for a Sentry error.
### SentryErrorStackTraceContext ### SentryErrorStackTraceContext
An object context for a Sentry error stack trace An object context for a Sentry error stack trace.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2285,7 +2285,7 @@ An object containing a stack trace entry for a Sentry error. ...@@ -2285,7 +2285,7 @@ An object containing a stack trace entry for a Sentry error.
### SentryErrorTags ### SentryErrorTags
State of a Sentry error State of a Sentry error.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2294,7 +2294,7 @@ State of a Sentry error ...@@ -2294,7 +2294,7 @@ State of a Sentry error
### Snippet ### Snippet
Represents a snippet entry Represents a snippet entry.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2318,7 +2318,7 @@ Represents a snippet entry ...@@ -2318,7 +2318,7 @@ Represents a snippet entry
### SnippetBlob ### SnippetBlob
Represents the snippet blob Represents the snippet blob.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2337,7 +2337,7 @@ Represents the snippet blob ...@@ -2337,7 +2337,7 @@ Represents the snippet blob
### SnippetBlobViewer ### SnippetBlobViewer
Represents how the blob content should be displayed Represents how the blob content should be displayed.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2375,7 +2375,7 @@ Represents how the blob content should be displayed ...@@ -2375,7 +2375,7 @@ Represents how the blob content should be displayed
### TaskCompletionStatus ### TaskCompletionStatus
Completion status of tasks Completion status of tasks.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2384,7 +2384,7 @@ Completion status of tasks ...@@ -2384,7 +2384,7 @@ Completion status of tasks
### TerraformStateRegistry ### TerraformStateRegistry
Represents the sync and verification state of a terraform state Represents the sync and verification state of a terraform state.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2421,7 +2421,7 @@ Represents a requirement test report. ...@@ -2421,7 +2421,7 @@ Represents a requirement test report.
### Todo ### Todo
Representing a todo entry Representing a todo entry.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2437,7 +2437,7 @@ Representing a todo entry ...@@ -2437,7 +2437,7 @@ Representing a todo entry
### TodoMarkDonePayload ### TodoMarkDonePayload
Autogenerated return type of TodoMarkDone Autogenerated return type of TodoMarkDone.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2447,7 +2447,7 @@ Autogenerated return type of TodoMarkDone ...@@ -2447,7 +2447,7 @@ Autogenerated return type of TodoMarkDone
### TodoRestoreManyPayload ### TodoRestoreManyPayload
Autogenerated return type of TodoRestoreMany Autogenerated return type of TodoRestoreMany.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2458,7 +2458,7 @@ Autogenerated return type of TodoRestoreMany ...@@ -2458,7 +2458,7 @@ Autogenerated return type of TodoRestoreMany
### TodoRestorePayload ### TodoRestorePayload
Autogenerated return type of TodoRestore Autogenerated return type of TodoRestore.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2468,7 +2468,7 @@ Autogenerated return type of TodoRestore ...@@ -2468,7 +2468,7 @@ Autogenerated return type of TodoRestore
### TodosMarkAllDonePayload ### TodosMarkAllDonePayload
Autogenerated return type of TodosMarkAllDone Autogenerated return type of TodosMarkAllDone.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2479,7 +2479,7 @@ Autogenerated return type of TodosMarkAllDone ...@@ -2479,7 +2479,7 @@ Autogenerated return type of TodosMarkAllDone
### ToggleAwardEmojiPayload ### ToggleAwardEmojiPayload
Autogenerated return type of ToggleAwardEmoji Autogenerated return type of ToggleAwardEmoji.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2496,7 +2496,7 @@ Autogenerated return type of ToggleAwardEmoji ...@@ -2496,7 +2496,7 @@ Autogenerated return type of ToggleAwardEmoji
### TreeEntry ### TreeEntry
Represents a directory Represents a directory.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2511,7 +2511,7 @@ Represents a directory ...@@ -2511,7 +2511,7 @@ Represents a directory
### UpdateAlertStatusPayload ### UpdateAlertStatusPayload
Autogenerated return type of UpdateAlertStatus Autogenerated return type of UpdateAlertStatus.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2523,7 +2523,7 @@ Autogenerated return type of UpdateAlertStatus ...@@ -2523,7 +2523,7 @@ Autogenerated return type of UpdateAlertStatus
### UpdateBoardListPayload ### UpdateBoardListPayload
Autogenerated return type of UpdateBoardList Autogenerated return type of UpdateBoardList.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2533,7 +2533,7 @@ Autogenerated return type of UpdateBoardList ...@@ -2533,7 +2533,7 @@ Autogenerated return type of UpdateBoardList
### UpdateBoardPayload ### UpdateBoardPayload
Autogenerated return type of UpdateBoard Autogenerated return type of UpdateBoard.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2543,7 +2543,7 @@ Autogenerated return type of UpdateBoard ...@@ -2543,7 +2543,7 @@ Autogenerated return type of UpdateBoard
### UpdateContainerExpirationPolicyPayload ### UpdateContainerExpirationPolicyPayload
Autogenerated return type of UpdateContainerExpirationPolicy Autogenerated return type of UpdateContainerExpirationPolicy.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2553,7 +2553,7 @@ Autogenerated return type of UpdateContainerExpirationPolicy ...@@ -2553,7 +2553,7 @@ Autogenerated return type of UpdateContainerExpirationPolicy
### UpdateEpicPayload ### UpdateEpicPayload
Autogenerated return type of UpdateEpic Autogenerated return type of UpdateEpic.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2563,7 +2563,7 @@ Autogenerated return type of UpdateEpic ...@@ -2563,7 +2563,7 @@ Autogenerated return type of UpdateEpic
### UpdateImageDiffNotePayload ### UpdateImageDiffNotePayload
Autogenerated return type of UpdateImageDiffNote Autogenerated return type of UpdateImageDiffNote.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2573,7 +2573,7 @@ Autogenerated return type of UpdateImageDiffNote ...@@ -2573,7 +2573,7 @@ Autogenerated return type of UpdateImageDiffNote
### UpdateIssuePayload ### UpdateIssuePayload
Autogenerated return type of UpdateIssue Autogenerated return type of UpdateIssue.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2583,7 +2583,7 @@ Autogenerated return type of UpdateIssue ...@@ -2583,7 +2583,7 @@ Autogenerated return type of UpdateIssue
### UpdateIterationPayload ### UpdateIterationPayload
Autogenerated return type of UpdateIteration Autogenerated return type of UpdateIteration.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2593,7 +2593,7 @@ Autogenerated return type of UpdateIteration ...@@ -2593,7 +2593,7 @@ Autogenerated return type of UpdateIteration
### UpdateNotePayload ### UpdateNotePayload
Autogenerated return type of UpdateNote Autogenerated return type of UpdateNote.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2603,7 +2603,7 @@ Autogenerated return type of UpdateNote ...@@ -2603,7 +2603,7 @@ Autogenerated return type of UpdateNote
### UpdateRequirementPayload ### UpdateRequirementPayload
Autogenerated return type of UpdateRequirement Autogenerated return type of UpdateRequirement.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2613,7 +2613,7 @@ Autogenerated return type of UpdateRequirement ...@@ -2613,7 +2613,7 @@ Autogenerated return type of UpdateRequirement
### UpdateSnippetPayload ### UpdateSnippetPayload
Autogenerated return type of UpdateSnippet Autogenerated return type of UpdateSnippet.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2652,7 +2652,7 @@ Autogenerated return type of UpdateSnippet ...@@ -2652,7 +2652,7 @@ Autogenerated return type of UpdateSnippet
### VulnerabilitiesCountByDay ### VulnerabilitiesCountByDay
Represents the count of vulnerabilities by severity on a particular day Represents the count of vulnerabilities by severity on a particular day.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2667,7 +2667,7 @@ Represents the count of vulnerabilities by severity on a particular day ...@@ -2667,7 +2667,7 @@ Represents the count of vulnerabilities by severity on a particular day
### VulnerabilitiesCountByDayAndSeverity ### VulnerabilitiesCountByDayAndSeverity
Represents the number of vulnerabilities for a particular severity on a particular day Represents the number of vulnerabilities for a particular severity on a particular day.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2721,7 +2721,7 @@ Represents an issue link of a vulnerability. ...@@ -2721,7 +2721,7 @@ Represents an issue link of a vulnerability.
### VulnerabilityLocationContainerScanning ### VulnerabilityLocationContainerScanning
Represents the location of a vulnerability found by a container security scan Represents the location of a vulnerability found by a container security scan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2731,7 +2731,7 @@ Represents the location of a vulnerability found by a container security scan ...@@ -2731,7 +2731,7 @@ Represents the location of a vulnerability found by a container security scan
### VulnerabilityLocationCoverageFuzzing ### VulnerabilityLocationCoverageFuzzing
Represents the location of a vulnerability found by a Coverage Fuzzing scan Represents the location of a vulnerability found by a Coverage Fuzzing scan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2743,7 +2743,7 @@ Represents the location of a vulnerability found by a Coverage Fuzzing scan ...@@ -2743,7 +2743,7 @@ Represents the location of a vulnerability found by a Coverage Fuzzing scan
### VulnerabilityLocationDast ### VulnerabilityLocationDast
Represents the location of a vulnerability found by a DAST scan Represents the location of a vulnerability found by a DAST scan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2754,7 +2754,7 @@ Represents the location of a vulnerability found by a DAST scan ...@@ -2754,7 +2754,7 @@ Represents the location of a vulnerability found by a DAST scan
### VulnerabilityLocationDependencyScanning ### VulnerabilityLocationDependencyScanning
Represents the location of a vulnerability found by a dependency security scan Represents the location of a vulnerability found by a dependency security scan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2763,7 +2763,7 @@ Represents the location of a vulnerability found by a dependency security scan ...@@ -2763,7 +2763,7 @@ Represents the location of a vulnerability found by a dependency security scan
### VulnerabilityLocationSast ### VulnerabilityLocationSast
Represents the location of a vulnerability found by a SAST scan Represents the location of a vulnerability found by a SAST scan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2775,7 +2775,7 @@ Represents the location of a vulnerability found by a SAST scan ...@@ -2775,7 +2775,7 @@ Represents the location of a vulnerability found by a SAST scan
### VulnerabilityLocationSecretDetection ### VulnerabilityLocationSecretDetection
Represents the location of a vulnerability found by a secret detection scan Represents the location of a vulnerability found by a secret detection scan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2787,7 +2787,7 @@ Represents the location of a vulnerability found by a secret detection scan ...@@ -2787,7 +2787,7 @@ Represents the location of a vulnerability found by a secret detection scan
### VulnerabilityPermissions ### VulnerabilityPermissions
Check permissions for the current user on a vulnerability Check permissions for the current user on a vulnerability.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2813,7 +2813,7 @@ Represents a vulnerability scanner. ...@@ -2813,7 +2813,7 @@ Represents a vulnerability scanner.
### VulnerabilitySeveritiesCount ### VulnerabilitySeveritiesCount
Represents vulnerability counts by severity Represents vulnerability counts by severity.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2826,7 +2826,7 @@ Represents vulnerability counts by severity ...@@ -2826,7 +2826,7 @@ Represents vulnerability counts by severity
### VulnerableDependency ### VulnerableDependency
Represents a vulnerable dependency. Used in vulnerability location data Represents a vulnerable dependency. Used in vulnerability location data.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2835,7 +2835,7 @@ Represents a vulnerable dependency. Used in vulnerability location data ...@@ -2835,7 +2835,7 @@ Represents a vulnerable dependency. Used in vulnerability location data
### VulnerablePackage ### VulnerablePackage
Represents a vulnerable package. Used in vulnerability dependency data Represents a vulnerable package. Used in vulnerability dependency data.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2843,7 +2843,7 @@ Represents a vulnerable package. Used in vulnerability dependency data ...@@ -2843,7 +2843,7 @@ Represents a vulnerable package. Used in vulnerability dependency data
### VulnerableProjectsByGrade ### VulnerableProjectsByGrade
Represents vulnerability letter grades with associated projects Represents vulnerability letter grades with associated projects.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
...@@ -2861,7 +2861,7 @@ on `graphql.org`. ...@@ -2861,7 +2861,7 @@ on `graphql.org`.
### AccessLevelEnum ### AccessLevelEnum
Access level to a resource Access level to a resource.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -2874,7 +2874,7 @@ Access level to a resource ...@@ -2874,7 +2874,7 @@ Access level to a resource
### AlertManagementAlertSort ### AlertManagementAlertSort
Values for sorting alerts Values for sorting alerts.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -2899,7 +2899,7 @@ Values for sorting alerts ...@@ -2899,7 +2899,7 @@ Values for sorting alerts
### AlertManagementSeverity ### AlertManagementSeverity
Alert severity values Alert severity values.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -2912,7 +2912,7 @@ Alert severity values ...@@ -2912,7 +2912,7 @@ Alert severity values
### AlertManagementStatus ### AlertManagementStatus
Alert status values Alert status values.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -2923,7 +2923,7 @@ Alert status values ...@@ -2923,7 +2923,7 @@ Alert status values
### BlobViewersType ### BlobViewersType
Types of blob viewers Types of blob viewers.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -2933,7 +2933,7 @@ Types of blob viewers ...@@ -2933,7 +2933,7 @@ Types of blob viewers
### CommitActionMode ### CommitActionMode
Mode of a commit action Mode of a commit action.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -2997,7 +2997,7 @@ Mode of a commit action ...@@ -2997,7 +2997,7 @@ Mode of a commit action
### DesignVersionEvent ### DesignVersionEvent
Mutation event of a design within a version Mutation event of a design within a version.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3008,7 +3008,7 @@ Mutation event of a design within a version ...@@ -3008,7 +3008,7 @@ Mutation event of a design within a version
### DiffPositionType ### DiffPositionType
Type of file the position refers to Type of file the position refers to.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3017,7 +3017,7 @@ Type of file the position refers to ...@@ -3017,7 +3017,7 @@ Type of file the position refers to
### EntryType ### EntryType
Type of a tree entry Type of a tree entry.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3027,7 +3027,7 @@ Type of a tree entry ...@@ -3027,7 +3027,7 @@ Type of a tree entry
### EpicSort ### EpicSort
Roadmap sort values Roadmap sort values.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3048,7 +3048,7 @@ State of an epic. ...@@ -3048,7 +3048,7 @@ State of an epic.
### EpicStateEvent ### EpicStateEvent
State event of an epic State event of an epic.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3057,7 +3057,7 @@ State event of an epic ...@@ -3057,7 +3057,7 @@ State event of an epic
### EpicWildcardId ### EpicWildcardId
Epic ID wildcard values Epic ID wildcard values.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3066,7 +3066,7 @@ Epic ID wildcard values ...@@ -3066,7 +3066,7 @@ Epic ID wildcard values
### HealthStatus ### HealthStatus
Health status of an issue or epic Health status of an issue or epic.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3076,7 +3076,7 @@ Health status of an issue or epic ...@@ -3076,7 +3076,7 @@ Health status of an issue or epic
### IssuableSeverity ### IssuableSeverity
Incident severity Incident severity.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3088,7 +3088,7 @@ Incident severity ...@@ -3088,7 +3088,7 @@ Incident severity
### IssuableState ### IssuableState
State of a GitLab issue or merge request State of a GitLab issue or merge request.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3099,7 +3099,7 @@ State of a GitLab issue or merge request ...@@ -3099,7 +3099,7 @@ State of a GitLab issue or merge request
### IssueSort ### IssueSort
Values for sorting issues Values for sorting issues.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3121,7 +3121,7 @@ Values for sorting issues ...@@ -3121,7 +3121,7 @@ Values for sorting issues
### IssueState ### IssueState
State of a GitLab issue State of a GitLab issue.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3132,7 +3132,7 @@ State of a GitLab issue ...@@ -3132,7 +3132,7 @@ State of a GitLab issue
### IssueType ### IssueType
Issue type Issue type.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3142,7 +3142,7 @@ Issue type ...@@ -3142,7 +3142,7 @@ Issue type
### IterationState ### IterationState
State of a GitLab iteration State of a GitLab iteration.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3154,7 +3154,7 @@ State of a GitLab iteration ...@@ -3154,7 +3154,7 @@ State of a GitLab iteration
### ListLimitMetric ### ListLimitMetric
List limit metric setting List limit metric setting.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3164,7 +3164,7 @@ List limit metric setting ...@@ -3164,7 +3164,7 @@ List limit metric setting
### MeasurementIdentifier ### MeasurementIdentifier
Possible identifier types for a measurement Possible identifier types for a measurement.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3177,7 +3177,7 @@ Possible identifier types for a measurement ...@@ -3177,7 +3177,7 @@ Possible identifier types for a measurement
### MergeRequestSort ### MergeRequestSort
Values for sorting merge requests Values for sorting merge requests.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3196,7 +3196,7 @@ Values for sorting merge requests ...@@ -3196,7 +3196,7 @@ Values for sorting merge requests
### MergeRequestState ### MergeRequestState
State of a GitLab merge request State of a GitLab merge request.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3215,7 +3215,7 @@ State of a GitLab merge request ...@@ -3215,7 +3215,7 @@ State of a GitLab merge request
### MoveType ### MoveType
The position to which the adjacent object should be moved The position to which the adjacent object should be moved.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3234,7 +3234,7 @@ Different toggles for changing mutator behavior. ...@@ -3234,7 +3234,7 @@ Different toggles for changing mutator behavior.
### NamespaceProjectSort ### NamespaceProjectSort
Values for sorting projects Values for sorting projects.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3283,7 +3283,7 @@ Values for sorting projects ...@@ -3283,7 +3283,7 @@ Values for sorting projects
### ProjectSettingEnum ### ProjectSettingEnum
Names of compliance frameworks that can be assigned to a Project Names of compliance frameworks that can be assigned to a Project.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3306,7 +3306,7 @@ State of a Geo registry. ...@@ -3306,7 +3306,7 @@ State of a Geo registry.
### ReleaseAssetLinkType ### ReleaseAssetLinkType
Type of the link: `other`, `runbook`, `image`, `package`; defaults to `other` Type of the link: `other`, `runbook`, `image`, `package`; defaults to `other`.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3317,7 +3317,7 @@ Type of the link: `other`, `runbook`, `image`, `package`; defaults to `other` ...@@ -3317,7 +3317,7 @@ Type of the link: `other`, `runbook`, `image`, `package`; defaults to `other`
### RequirementState ### RequirementState
State of a requirement State of a requirement.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3326,7 +3326,7 @@ State of a requirement ...@@ -3326,7 +3326,7 @@ State of a requirement
### SastUiComponentSize ### SastUiComponentSize
Size of UI component in SAST configuration page Size of UI component in SAST configuration page.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3349,7 +3349,7 @@ The type of the security scanner. ...@@ -3349,7 +3349,7 @@ The type of the security scanner.
### SentryErrorStatus ### SentryErrorStatus
State of a Sentry error State of a Sentry error.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3401,7 +3401,7 @@ State of a Sentry error ...@@ -3401,7 +3401,7 @@ State of a Sentry error
### SnippetBlobActionEnum ### SnippetBlobActionEnum
Type of a snippet blob input action Type of a snippet blob input action.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3412,7 +3412,7 @@ Type of a snippet blob input action ...@@ -3412,7 +3412,7 @@ Type of a snippet blob input action
### Sort ### Sort
Common sort values Common sort values.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3423,7 +3423,7 @@ Common sort values ...@@ -3423,7 +3423,7 @@ Common sort values
### TestReportState ### TestReportState
State of a test report State of a test report.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3469,7 +3469,7 @@ State of a test report ...@@ -3469,7 +3469,7 @@ State of a test report
### UserState ### UserState
Possible states of a user Possible states of a user.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3495,7 +3495,7 @@ Possible states of a user ...@@ -3495,7 +3495,7 @@ Possible states of a user
### VulnerabilityGrade ### VulnerabilityGrade
The grade of the vulnerable project The grade of the vulnerable project.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
...@@ -3542,7 +3542,7 @@ The severity of the vulnerability. ...@@ -3542,7 +3542,7 @@ The severity of the vulnerability.
### VulnerabilitySort ### VulnerabilitySort
Vulnerability sort values Vulnerability sort values.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
# rubocop: disable Graphql/AuthorizeTypes # rubocop: disable Graphql/AuthorizeTypes
class BurnupChartDailyTotalsType < BaseObject class BurnupChartDailyTotalsType < BaseObject
graphql_name 'BurnupChartDailyTotals' graphql_name 'BurnupChartDailyTotals'
description 'Represents the total number of issues and their weights for a particular day.' description 'Represents the total number of issues and their weights for a particular day'
field :date, GraphQL::Types::ISO8601Date, null: false, field :date, GraphQL::Types::ISO8601Date, null: false,
description: 'Date for burnup totals' description: 'Date for burnup totals'
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class DastScannerProfileType < BaseObject class DastScannerProfileType < BaseObject
graphql_name 'DastScannerProfile' graphql_name 'DastScannerProfile'
description 'Represents a DAST scanner profile.' description 'Represents a DAST scanner profile'
authorize :create_on_demand_dast_scan authorize :create_on_demand_dast_scan
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class DastSiteProfileType < BaseObject class DastSiteProfileType < BaseObject
graphql_name 'DastSiteProfile' graphql_name 'DastSiteProfile'
description 'Represents a DAST Site Profile.' description 'Represents a DAST Site Profile'
authorize :create_on_demand_dast_scan authorize :create_on_demand_dast_scan
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
# rubocop: disable Graphql/AuthorizeTypes # rubocop: disable Graphql/AuthorizeTypes
class EpicDescendantCountType < BaseObject class EpicDescendantCountType < BaseObject
graphql_name 'EpicDescendantCount' graphql_name 'EpicDescendantCount'
description 'Counts of descendent epics.' description 'Counts of descendent epics'
field :opened_epics, GraphQL::INT_TYPE, null: true, description: 'Number of opened child epics' field :opened_epics, GraphQL::INT_TYPE, null: true, description: 'Number of opened child epics'
field :closed_epics, GraphQL::INT_TYPE, null: true, description: 'Number of closed child epics' field :closed_epics, GraphQL::INT_TYPE, null: true, description: 'Number of closed child epics'
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class EpicStateEnum < BaseEnum class EpicStateEnum < BaseEnum
graphql_name 'EpicState' graphql_name 'EpicState'
description 'State of an epic.' description 'State of an epic'
value 'all' value 'all'
value 'opened' value 'opened'
......
...@@ -5,7 +5,7 @@ module Types ...@@ -5,7 +5,7 @@ module Types
include ::Gitlab::Graphql::Aggregations::Epics::Constants include ::Gitlab::Graphql::Aggregations::Epics::Constants
graphql_name 'Epic' graphql_name 'Epic'
description 'Represents an epic.' description 'Represents an epic'
authorize :read_epic authorize :read_epic
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
module Geo module Geo
class RegistryStateEnum < BaseEnum class RegistryStateEnum < BaseEnum
graphql_name 'RegistryState' graphql_name 'RegistryState'
description 'State of a Geo registry.' description 'State of a Geo registry'
value 'PENDING', value: :pending, description: 'Registry waiting to be synced' value 'PENDING', value: :pending, description: 'Registry waiting to be synced'
value 'STARTED', value: :started, description: 'Registry currently syncing' value 'STARTED', value: :started, description: 'Registry currently syncing'
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class IterationType < BaseObject class IterationType < BaseObject
graphql_name 'Iteration' graphql_name 'Iteration'
description 'Represents an iteration object.' description 'Represents an iteration object'
present_using IterationPresenter present_using IterationPresenter
......
...@@ -5,7 +5,7 @@ module Types ...@@ -5,7 +5,7 @@ module Types
# rubocop: disable Graphql/AuthorizeTypes # rubocop: disable Graphql/AuthorizeTypes
class RequirementStatesCountType < BaseObject class RequirementStatesCountType < BaseObject
graphql_name 'RequirementStatesCount' graphql_name 'RequirementStatesCount'
description 'Counts of requirements by their state.' description 'Counts of requirements by their state'
field :opened, GraphQL::INT_TYPE, null: true, description: 'Number of opened requirements' field :opened, GraphQL::INT_TYPE, null: true, description: 'Number of opened requirements'
field :archived, GraphQL::INT_TYPE, null: true, description: 'Number of archived requirements' field :archived, GraphQL::INT_TYPE, null: true, description: 'Number of archived requirements'
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
module RequirementsManagement module RequirementsManagement
class TestReportType < BaseObject class TestReportType < BaseObject
graphql_name 'TestReport' graphql_name 'TestReport'
description 'Represents a requirement test report.' description 'Represents a requirement test report'
authorize :read_requirement authorize :read_requirement
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class SecurityScannerTypeEnum < BaseEnum class SecurityScannerTypeEnum < BaseEnum
graphql_name 'SecurityScannerType' graphql_name 'SecurityScannerType'
description 'The type of the security scanner.' description 'The type of the security scanner'
::Security::SecurityJobsFinder.allowed_job_types.each do |scanner| ::Security::SecurityJobsFinder.allowed_job_types.each do |scanner|
value scanner.upcase.to_s value scanner.upcase.to_s
......
...@@ -5,7 +5,7 @@ module Types ...@@ -5,7 +5,7 @@ module Types
# rubocop: disable Graphql/AuthorizeTypes # rubocop: disable Graphql/AuthorizeTypes
class IssueLinkType < BaseObject class IssueLinkType < BaseObject
graphql_name 'VulnerabilityIssueLink' graphql_name 'VulnerabilityIssueLink'
description 'Represents an issue link of a vulnerability.' description 'Represents an issue link of a vulnerability'
field :id, GraphQL::ID_TYPE, null: false, field :id, GraphQL::ID_TYPE, null: false,
description: 'GraphQL ID of the vulnerability' description: 'GraphQL ID of the vulnerability'
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
module Vulnerability module Vulnerability
class IssueLinkTypeEnum < BaseEnum class IssueLinkTypeEnum < BaseEnum
graphql_name 'VulnerabilityIssueLinkType' graphql_name 'VulnerabilityIssueLinkType'
description 'The type of the issue link related to a vulnerability.' description 'The type of the issue link related to a vulnerability'
::Vulnerabilities::IssueLink.link_types.keys.each do |link_type| ::Vulnerabilities::IssueLink.link_types.keys.each do |link_type|
value link_type.to_s.upcase, value: link_type.to_s value link_type.to_s.upcase, value: link_type.to_s
......
...@@ -4,7 +4,7 @@ module Types ...@@ -4,7 +4,7 @@ module Types
# rubocop: disable Graphql/AuthorizeTypes # rubocop: disable Graphql/AuthorizeTypes
class VulnerabilityIdentifierType < BaseObject class VulnerabilityIdentifierType < BaseObject
graphql_name 'VulnerabilityIdentifier' graphql_name 'VulnerabilityIdentifier'
description 'Represents a vulnerability identifier.' description 'Represents a vulnerability identifier'
field :name, GraphQL::STRING_TYPE, null: true, field :name, GraphQL::STRING_TYPE, null: true,
description: 'Name of the vulnerability identifier' description: 'Name of the vulnerability identifier'
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class VulnerabilityReportTypeEnum < BaseEnum class VulnerabilityReportTypeEnum < BaseEnum
graphql_name 'VulnerabilityReportType' graphql_name 'VulnerabilityReportType'
description 'The type of the security scan that found the vulnerability.' description 'The type of the security scan that found the vulnerability'
::Vulnerabilities::Finding::REPORT_TYPES.keys.each do |report_type| ::Vulnerabilities::Finding::REPORT_TYPES.keys.each do |report_type|
value report_type.to_s.upcase, value: report_type.to_s value report_type.to_s.upcase, value: report_type.to_s
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class VulnerabilityScannerType < BaseObject class VulnerabilityScannerType < BaseObject
graphql_name 'VulnerabilityScanner' graphql_name 'VulnerabilityScanner'
description 'Represents a vulnerability scanner.' description 'Represents a vulnerability scanner'
authorize :read_vulnerability_scanner authorize :read_vulnerability_scanner
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class VulnerabilitySeverityEnum < BaseEnum class VulnerabilitySeverityEnum < BaseEnum
graphql_name 'VulnerabilitySeverity' graphql_name 'VulnerabilitySeverity'
description 'The severity of the vulnerability.' description 'The severity of the vulnerability'
::Vulnerabilities::Finding::SEVERITY_LEVELS.keys.each do |severity| ::Vulnerabilities::Finding::SEVERITY_LEVELS.keys.each do |severity|
value severity.to_s.upcase, value: severity.to_s value severity.to_s.upcase, value: severity.to_s
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class VulnerabilityStateEnum < BaseEnum class VulnerabilityStateEnum < BaseEnum
graphql_name 'VulnerabilityState' graphql_name 'VulnerabilityState'
description 'The state of the vulnerability.' description 'The state of the vulnerability'
::Vulnerability.states.keys.each do |state| ::Vulnerability.states.keys.each do |state|
value state.to_s.upcase, value: state.to_s value state.to_s.upcase, value: state.to_s
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Types module Types
class VulnerabilityType < BaseObject class VulnerabilityType < BaseObject
graphql_name 'Vulnerability' graphql_name 'Vulnerability'
description 'Represents a vulnerability.' description 'Represents a vulnerability'
authorize :read_vulnerability authorize :read_vulnerability
......
...@@ -25,7 +25,7 @@ module Gitlab ...@@ -25,7 +25,7 @@ module Gitlab
content = "### #{object[:name]}\n" content = "### #{object[:name]}\n"
if object[:description].present? if object[:description].present?
content += "\n#{object[:description]}\n" content += "\n#{object[:description]}.\n"
end end
content content
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment