Format ID as uppercase in GraphQL descriptions

parent c731e76a
...@@ -11,7 +11,7 @@ module Mutations ...@@ -11,7 +11,7 @@ module Mutations
argument :iid, GraphQL::STRING_TYPE, argument :iid, GraphQL::STRING_TYPE,
required: true, required: true,
description: "The iid of the alert to mutate" description: "The IID of the alert to mutate"
field :alert, field :alert,
Types::AlertManagement::AlertType, Types::AlertManagement::AlertType,
......
...@@ -8,7 +8,7 @@ module Mutations ...@@ -8,7 +8,7 @@ module Mutations
argument :id, Types::GlobalIDType[::AlertManagement::HttpIntegration], argument :id, Types::GlobalIDType[::AlertManagement::HttpIntegration],
required: true, required: true,
description: "The id of the integration to remove" description: "The ID of the integration to remove"
def resolve(id:) def resolve(id:)
integration = authorized_find!(id: id) integration = authorized_find!(id: id)
......
...@@ -8,7 +8,7 @@ module Mutations ...@@ -8,7 +8,7 @@ module Mutations
argument :id, Types::GlobalIDType[::AlertManagement::HttpIntegration], argument :id, Types::GlobalIDType[::AlertManagement::HttpIntegration],
required: true, required: true,
description: "The id of the integration to mutate" description: "The ID of the integration to mutate"
def resolve(id:) def resolve(id:)
integration = authorized_find!(id: id) integration = authorized_find!(id: id)
......
...@@ -8,7 +8,7 @@ module Mutations ...@@ -8,7 +8,7 @@ module Mutations
argument :id, Types::GlobalIDType[::AlertManagement::HttpIntegration], argument :id, Types::GlobalIDType[::AlertManagement::HttpIntegration],
required: true, required: true,
description: "The id of the integration to mutate" description: "The ID of the integration to mutate"
argument :name, GraphQL::STRING_TYPE, argument :name, GraphQL::STRING_TYPE,
required: false, required: false,
......
...@@ -8,7 +8,7 @@ module Mutations ...@@ -8,7 +8,7 @@ module Mutations
argument :id, Types::GlobalIDType[::PrometheusService], argument :id, Types::GlobalIDType[::PrometheusService],
required: true, required: true,
description: "The id of the integration to mutate" description: "The ID of the integration to mutate"
def resolve(id:) def resolve(id:)
integration = authorized_find!(id: id) integration = authorized_find!(id: id)
......
...@@ -8,7 +8,7 @@ module Mutations ...@@ -8,7 +8,7 @@ module Mutations
argument :id, Types::GlobalIDType[::PrometheusService], argument :id, Types::GlobalIDType[::PrometheusService],
required: true, required: true,
description: "The id of the integration to mutate" description: "The ID of the integration to mutate"
argument :active, GraphQL::BOOLEAN_TYPE, argument :active, GraphQL::BOOLEAN_TYPE,
required: false, required: false,
......
...@@ -12,7 +12,7 @@ module Mutations ...@@ -12,7 +12,7 @@ module Mutations
argument :awardable_id, argument :awardable_id,
::Types::GlobalIDType[::Awardable], ::Types::GlobalIDType[::Awardable],
required: true, required: true,
description: 'The global id of the awardable resource' description: 'The global ID of the awardable resource'
argument :name, argument :name,
GraphQL::STRING_TYPE, GraphQL::STRING_TYPE,
......
...@@ -7,7 +7,7 @@ module Mutations ...@@ -7,7 +7,7 @@ module Mutations
argument :id, PipelineID, argument :id, PipelineID,
required: true, required: true,
description: 'The id of the pipeline to mutate' description: 'The ID of the pipeline to mutate'
private private
......
...@@ -11,7 +11,7 @@ module Mutations ...@@ -11,7 +11,7 @@ module Mutations
argument :iid, GraphQL::ID_TYPE, argument :iid, GraphQL::ID_TYPE,
required: true, required: true,
description: "The iid of the issue to modify designs for" description: "The IID of the issue to modify designs for"
private private
......
...@@ -10,7 +10,7 @@ module Mutations ...@@ -10,7 +10,7 @@ module Mutations
argument :id, argument :id,
Types::GlobalIDType[Discussion], Types::GlobalIDType[Discussion],
required: true, required: true,
description: 'The global id of the discussion' description: 'The global ID of the discussion'
argument :resolve, argument :resolve,
GraphQL::BOOLEAN_TYPE, GraphQL::BOOLEAN_TYPE,
......
...@@ -11,7 +11,7 @@ module Mutations ...@@ -11,7 +11,7 @@ module Mutations
argument :iid, GraphQL::STRING_TYPE, argument :iid, GraphQL::STRING_TYPE,
required: true, required: true,
description: "The iid of the merge request to mutate" description: "The IID of the merge request to mutate"
field :merge_request, field :merge_request,
Types::MergeRequestType, Types::MergeRequestType,
......
...@@ -20,12 +20,12 @@ module Mutations ...@@ -20,12 +20,12 @@ module Mutations
argument :environment_id, argument :environment_id,
::Types::GlobalIDType[::Environment], ::Types::GlobalIDType[::Environment],
required: false, required: false,
description: 'The global id of the environment to add an annotation to' description: 'The global ID of the environment to add an annotation to'
argument :cluster_id, argument :cluster_id,
::Types::GlobalIDType[::Clusters::Cluster], ::Types::GlobalIDType[::Clusters::Cluster],
required: false, required: false,
description: 'The global id of the cluster to add an annotation to' description: 'The global ID of the cluster to add an annotation to'
argument :starting_at, Types::TimeType, argument :starting_at, Types::TimeType,
required: true, required: true,
......
...@@ -11,7 +11,7 @@ module Mutations ...@@ -11,7 +11,7 @@ module Mutations
argument :noteable_id, argument :noteable_id,
::Types::GlobalIDType[::Noteable], ::Types::GlobalIDType[::Noteable],
required: true, required: true,
description: 'The global id of the resource to add a note to' description: 'The global ID of the resource to add a note to'
argument :body, argument :body,
GraphQL::STRING_TYPE, GraphQL::STRING_TYPE,
......
...@@ -9,7 +9,7 @@ module Mutations ...@@ -9,7 +9,7 @@ module Mutations
argument :discussion_id, argument :discussion_id,
::Types::GlobalIDType[::Discussion], ::Types::GlobalIDType[::Discussion],
required: false, required: false,
description: 'The global id of the discussion this note is in reply to' description: 'The global ID of the discussion this note is in reply to'
private private
......
...@@ -10,7 +10,7 @@ module Mutations ...@@ -10,7 +10,7 @@ module Mutations
argument :id, argument :id,
::Types::GlobalIDType[::Note], ::Types::GlobalIDType[::Note],
required: true, required: true,
description: 'The global id of the note to destroy' description: 'The global ID of the note to destroy'
def resolve(id:) def resolve(id:)
note = authorized_find!(id: id) note = authorized_find!(id: id)
......
...@@ -16,7 +16,7 @@ module Mutations ...@@ -16,7 +16,7 @@ module Mutations
loads: Types::Notes::NoteType, loads: Types::Notes::NoteType,
as: :note, as: :note,
required: true, required: true,
description: 'The global id of the DiffNote to update' description: 'The global ID of the DiffNote to update'
argument :position, argument :position,
Types::Notes::UpdateDiffImagePositionInputType, Types::Notes::UpdateDiffImagePositionInputType,
......
...@@ -11,7 +11,7 @@ module Mutations ...@@ -11,7 +11,7 @@ module Mutations
argument :id, argument :id,
::Types::GlobalIDType[::Note], ::Types::GlobalIDType[::Note],
required: true, required: true,
description: 'The global id of the note to update' description: 'The global ID of the note to update'
def resolve(args) def resolve(args)
note = authorized_find!(id: args[:id]) note = authorized_find!(id: args[:id])
......
...@@ -9,7 +9,7 @@ module Mutations ...@@ -9,7 +9,7 @@ module Mutations
argument :id, ::Types::GlobalIDType[::Snippet], argument :id, ::Types::GlobalIDType[::Snippet],
required: true, required: true,
description: 'The global id of the snippet to destroy' description: 'The global ID of the snippet to destroy'
def resolve(id:) def resolve(id:)
snippet = authorized_find!(id: id) snippet = authorized_find!(id: id)
......
...@@ -7,7 +7,7 @@ module Mutations ...@@ -7,7 +7,7 @@ module Mutations
argument :id, ::Types::GlobalIDType[::Snippet], argument :id, ::Types::GlobalIDType[::Snippet],
required: true, required: true,
description: 'The global id of the snippet to update' description: 'The global ID of the snippet to update'
def resolve(id:) def resolve(id:)
snippet = authorized_find!(id: id) snippet = authorized_find!(id: id)
......
...@@ -9,7 +9,7 @@ module Mutations ...@@ -9,7 +9,7 @@ module Mutations
argument :id, ::Types::GlobalIDType[::Snippet], argument :id, ::Types::GlobalIDType[::Snippet],
required: true, required: true,
description: 'The global id of the snippet to update' description: 'The global ID of the snippet to update'
argument :title, GraphQL::STRING_TYPE, argument :title, GraphQL::STRING_TYPE,
required: false, required: false,
......
...@@ -10,7 +10,7 @@ module Mutations ...@@ -10,7 +10,7 @@ module Mutations
argument :id, argument :id,
::Types::GlobalIDType[::Todo], ::Types::GlobalIDType[::Todo],
required: true, required: true,
description: 'The global id of the todo to mark as done' description: 'The global ID of the todo to mark as done'
field :todo, Types::TodoType, field :todo, Types::TodoType,
null: false, null: false,
......
...@@ -10,7 +10,7 @@ module Mutations ...@@ -10,7 +10,7 @@ module Mutations
argument :id, argument :id,
::Types::GlobalIDType[::Todo], ::Types::GlobalIDType[::Todo],
required: true, required: true,
description: 'The global id of the todo to restore' description: 'The global ID of the todo to restore'
field :todo, Types::TodoType, field :todo, Types::TodoType,
null: false, null: false,
......
...@@ -10,11 +10,11 @@ module Mutations ...@@ -10,11 +10,11 @@ module Mutations
argument :ids, argument :ids,
[::Types::GlobalIDType[::Todo]], [::Types::GlobalIDType[::Todo]],
required: true, required: true,
description: 'The global ids of the todos to restore (a maximum of 50 is supported at once)' description: 'The global IDs of the todos to restore (a maximum of 50 is supported at once)'
field :updated_ids, [::Types::GlobalIDType[Todo]], field :updated_ids, [::Types::GlobalIDType[Todo]],
null: false, null: false,
description: 'The ids of the updated todo items', description: 'The IDs of the updated todo items',
deprecated: { reason: 'Use todos', milestone: '13.2' } deprecated: { reason: 'Use todos', milestone: '13.2' }
field :todos, [::Types::TodoType], field :todos, [::Types::TodoType],
......
...@@ -8,7 +8,7 @@ module Types ...@@ -8,7 +8,7 @@ module Types
argument :jira_account_id, argument :jira_account_id,
GraphQL::STRING_TYPE, GraphQL::STRING_TYPE,
required: true, required: true,
description: 'Jira account id of the user' description: 'Jira account ID of the user'
argument :gitlab_id, argument :gitlab_id,
GraphQL::INT_TYPE, GraphQL::INT_TYPE,
required: false, required: false,
......
...@@ -30,7 +30,7 @@ Autogenerated input type of AddAwardEmoji ...@@ -30,7 +30,7 @@ Autogenerated input type of AddAwardEmoji
""" """
input AddAwardEmojiInput { input AddAwardEmojiInput {
""" """
The global id of the awardable resource The global ID of the awardable resource
""" """
awardableId: AwardableID! awardableId: AwardableID!
...@@ -837,7 +837,7 @@ input AlertSetAssigneesInput { ...@@ -837,7 +837,7 @@ input AlertSetAssigneesInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the alert to mutate The IID of the alert to mutate
""" """
iid: String! iid: String!
...@@ -892,7 +892,7 @@ input AlertTodoCreateInput { ...@@ -892,7 +892,7 @@ input AlertTodoCreateInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the alert to mutate The IID of the alert to mutate
""" """
iid: String! iid: String!
...@@ -992,7 +992,7 @@ Autogenerated input type of AwardEmojiAdd ...@@ -992,7 +992,7 @@ Autogenerated input type of AwardEmojiAdd
""" """
input AwardEmojiAddInput { input AwardEmojiAddInput {
""" """
The global id of the awardable resource The global ID of the awardable resource
""" """
awardableId: AwardableID! awardableId: AwardableID!
...@@ -1032,7 +1032,7 @@ Autogenerated input type of AwardEmojiRemove ...@@ -1032,7 +1032,7 @@ Autogenerated input type of AwardEmojiRemove
""" """
input AwardEmojiRemoveInput { input AwardEmojiRemoveInput {
""" """
The global id of the awardable resource The global ID of the awardable resource
""" """
awardableId: AwardableID! awardableId: AwardableID!
...@@ -1072,7 +1072,7 @@ Autogenerated input type of AwardEmojiToggle ...@@ -1072,7 +1072,7 @@ Autogenerated input type of AwardEmojiToggle
""" """
input AwardEmojiToggleInput { input AwardEmojiToggleInput {
""" """
The global id of the awardable resource The global ID of the awardable resource
""" """
awardableId: AwardableID! awardableId: AwardableID!
...@@ -1435,7 +1435,7 @@ type BoardEpic implements CurrentUserTodos & Noteable { ...@@ -1435,7 +1435,7 @@ type BoardEpic implements CurrentUserTodos & Noteable {
iid: ID iid: ID
""" """
Filter epics by iid for autocomplete Filter epics by IID for autocomplete
""" """
iidStartsWith: String iidStartsWith: String
...@@ -2632,7 +2632,7 @@ input ClusterAgentDeleteInput { ...@@ -2632,7 +2632,7 @@ input ClusterAgentDeleteInput {
clientMutationId: String clientMutationId: String
""" """
Global id of the cluster agent that will be deleted Global ID of the cluster agent that will be deleted
""" """
id: ClustersAgentID! id: ClustersAgentID!
} }
...@@ -3676,7 +3676,7 @@ input CreateAlertIssueInput { ...@@ -3676,7 +3676,7 @@ input CreateAlertIssueInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the alert to mutate The IID of the alert to mutate
""" """
iid: String! iid: String!
...@@ -3726,7 +3726,7 @@ input CreateAnnotationInput { ...@@ -3726,7 +3726,7 @@ input CreateAnnotationInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the cluster to add an annotation to The global ID of the cluster to add an annotation to
""" """
clusterId: ClustersClusterID clusterId: ClustersClusterID
...@@ -3746,7 +3746,7 @@ input CreateAnnotationInput { ...@@ -3746,7 +3746,7 @@ input CreateAnnotationInput {
endingAt: Time endingAt: Time
""" """
The global id of the environment to add an annotation to The global ID of the environment to add an annotation to
""" """
environmentId: EnvironmentID environmentId: EnvironmentID
...@@ -4031,7 +4031,7 @@ input CreateDiffNoteInput { ...@@ -4031,7 +4031,7 @@ input CreateDiffNoteInput {
confidential: Boolean confidential: Boolean
""" """
The global id of the resource to add a note to The global ID of the resource to add a note to
""" """
noteableId: NoteableID! noteableId: NoteableID!
...@@ -4161,7 +4161,7 @@ input CreateImageDiffNoteInput { ...@@ -4161,7 +4161,7 @@ input CreateImageDiffNoteInput {
confidential: Boolean confidential: Boolean
""" """
The global id of the resource to add a note to The global ID of the resource to add a note to
""" """
noteableId: NoteableID! noteableId: NoteableID!
...@@ -4386,12 +4386,12 @@ input CreateNoteInput { ...@@ -4386,12 +4386,12 @@ input CreateNoteInput {
confidential: Boolean confidential: Boolean
""" """
The global id of the discussion this note is in reply to The global ID of the discussion this note is in reply to
""" """
discussionId: DiscussionID discussionId: DiscussionID
""" """
The global id of the resource to add a note to The global ID of the resource to add a note to
""" """
noteableId: NoteableID! noteableId: NoteableID!
} }
...@@ -6015,7 +6015,7 @@ input DesignManagementDeleteInput { ...@@ -6015,7 +6015,7 @@ input DesignManagementDeleteInput {
filenames: [String!]! filenames: [String!]!
""" """
The iid of the issue to modify designs for The IID of the issue to modify designs for
""" """
iid: ID! iid: ID!
...@@ -6115,7 +6115,7 @@ input DesignManagementUploadInput { ...@@ -6115,7 +6115,7 @@ input DesignManagementUploadInput {
files: [Upload!]! files: [Upload!]!
""" """
The iid of the issue to modify designs for The IID of the issue to modify designs for
""" """
iid: ID! iid: ID!
...@@ -6425,7 +6425,7 @@ input DestroyNoteInput { ...@@ -6425,7 +6425,7 @@ input DestroyNoteInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the note to destroy The global ID of the note to destroy
""" """
id: NoteID! id: NoteID!
} }
...@@ -6460,7 +6460,7 @@ input DestroySnippetInput { ...@@ -6460,7 +6460,7 @@ input DestroySnippetInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the snippet to destroy The global ID of the snippet to destroy
""" """
id: SnippetID! id: SnippetID!
} }
...@@ -6979,7 +6979,7 @@ input DiscussionToggleResolveInput { ...@@ -6979,7 +6979,7 @@ input DiscussionToggleResolveInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the discussion The global ID of the discussion
""" """
id: DiscussionID! id: DiscussionID!
...@@ -7250,7 +7250,7 @@ type Epic implements CurrentUserTodos & Noteable { ...@@ -7250,7 +7250,7 @@ type Epic implements CurrentUserTodos & Noteable {
iid: ID iid: ID
""" """
Filter epics by iid for autocomplete Filter epics by IID for autocomplete
""" """
iidStartsWith: String iidStartsWith: String
...@@ -7663,12 +7663,12 @@ input EpicAddIssueInput { ...@@ -7663,12 +7663,12 @@ input EpicAddIssueInput {
groupPath: ID! groupPath: ID!
""" """
The iid of the epic to mutate The IID of the epic to mutate
""" """
iid: ID! iid: ID!
""" """
The iid of the issue to be added The IID of the issue to be added
""" """
issueIid: String! issueIid: String!
...@@ -8318,7 +8318,7 @@ input EpicSetSubscriptionInput { ...@@ -8318,7 +8318,7 @@ input EpicSetSubscriptionInput {
groupPath: ID! groupPath: ID!
""" """
The iid of the epic to mutate The IID of the epic to mutate
""" """
iid: ID! iid: ID!
...@@ -8402,12 +8402,12 @@ A node of an epic tree. ...@@ -8402,12 +8402,12 @@ A node of an epic tree.
""" """
input EpicTreeNodeFieldsInputType { input EpicTreeNodeFieldsInputType {
""" """
The id of the epic_issue or issue that the actual epic or issue is switched with The ID of the epic_issue or issue that the actual epic or issue is switched with
""" """
adjacentReferenceId: EpicTreeSortingID adjacentReferenceId: EpicTreeSortingID
""" """
The id of the epic_issue or epic that is being moved The ID of the epic_issue or epic that is being moved
""" """
id: EpicTreeSortingID! id: EpicTreeSortingID!
...@@ -8427,7 +8427,7 @@ Autogenerated input type of EpicTreeReorder ...@@ -8427,7 +8427,7 @@ Autogenerated input type of EpicTreeReorder
""" """
input EpicTreeReorderInput { input EpicTreeReorderInput {
""" """
The id of the base epic of the tree The ID of the base epic of the tree
""" """
baseEpicId: EpicID! baseEpicId: EpicID!
...@@ -8919,7 +8919,7 @@ type Group { ...@@ -8919,7 +8919,7 @@ type Group {
iid: ID iid: ID
""" """
Filter epics by iid for autocomplete Filter epics by IID for autocomplete
""" """
iidStartsWith: String iidStartsWith: String
...@@ -9007,7 +9007,7 @@ type Group { ...@@ -9007,7 +9007,7 @@ type Group {
iid: ID iid: ID
""" """
Filter epics by iid for autocomplete Filter epics by IID for autocomplete
""" """
iidStartsWith: String iidStartsWith: String
...@@ -10130,7 +10130,7 @@ input HttpIntegrationDestroyInput { ...@@ -10130,7 +10130,7 @@ input HttpIntegrationDestroyInput {
clientMutationId: String clientMutationId: String
""" """
The id of the integration to remove The ID of the integration to remove
""" """
id: AlertManagementHttpIntegrationID! id: AlertManagementHttpIntegrationID!
} }
...@@ -10165,7 +10165,7 @@ input HttpIntegrationResetTokenInput { ...@@ -10165,7 +10165,7 @@ input HttpIntegrationResetTokenInput {
clientMutationId: String clientMutationId: String
""" """
The id of the integration to mutate The ID of the integration to mutate
""" """
id: AlertManagementHttpIntegrationID! id: AlertManagementHttpIntegrationID!
} }
...@@ -10205,7 +10205,7 @@ input HttpIntegrationUpdateInput { ...@@ -10205,7 +10205,7 @@ input HttpIntegrationUpdateInput {
clientMutationId: String clientMutationId: String
""" """
The id of the integration to mutate The ID of the integration to mutate
""" """
id: AlertManagementHttpIntegrationID! id: AlertManagementHttpIntegrationID!
...@@ -12140,7 +12140,7 @@ input JiraUsersMappingInputType { ...@@ -12140,7 +12140,7 @@ input JiraUsersMappingInputType {
gitlabId: Int gitlabId: Int
""" """
Jira account id of the user Jira account ID of the user
""" """
jiraAccountId: String! jiraAccountId: String!
} }
...@@ -12333,7 +12333,7 @@ input MarkAsSpamSnippetInput { ...@@ -12333,7 +12333,7 @@ input MarkAsSpamSnippetInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the snippet to update The global ID of the snippet to update
""" """
id: SnippetID! id: SnippetID!
} }
...@@ -13272,7 +13272,7 @@ input MergeRequestSetAssigneesInput { ...@@ -13272,7 +13272,7 @@ input MergeRequestSetAssigneesInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the merge request to mutate The IID of the merge request to mutate
""" """
iid: String! iid: String!
...@@ -13317,7 +13317,7 @@ input MergeRequestSetLabelsInput { ...@@ -13317,7 +13317,7 @@ input MergeRequestSetLabelsInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the merge request to mutate The IID of the merge request to mutate
""" """
iid: String! iid: String!
...@@ -13367,7 +13367,7 @@ input MergeRequestSetLockedInput { ...@@ -13367,7 +13367,7 @@ input MergeRequestSetLockedInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the merge request to mutate The IID of the merge request to mutate
""" """
iid: String! iid: String!
...@@ -13412,7 +13412,7 @@ input MergeRequestSetMilestoneInput { ...@@ -13412,7 +13412,7 @@ input MergeRequestSetMilestoneInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the merge request to mutate The IID of the merge request to mutate
""" """
iid: String! iid: String!
...@@ -13457,7 +13457,7 @@ input MergeRequestSetSubscriptionInput { ...@@ -13457,7 +13457,7 @@ input MergeRequestSetSubscriptionInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the merge request to mutate The IID of the merge request to mutate
""" """
iid: String! iid: String!
...@@ -13502,7 +13502,7 @@ input MergeRequestSetWipInput { ...@@ -13502,7 +13502,7 @@ input MergeRequestSetWipInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the merge request to mutate The IID of the merge request to mutate
""" """
iid: String! iid: String!
...@@ -13648,7 +13648,7 @@ input MergeRequestUpdateInput { ...@@ -13648,7 +13648,7 @@ input MergeRequestUpdateInput {
description: String description: String
""" """
The iid of the merge request to mutate The IID of the merge request to mutate
""" """
iid: String! iid: String!
...@@ -14368,7 +14368,7 @@ input NamespaceIncreaseStorageTemporarilyInput { ...@@ -14368,7 +14368,7 @@ input NamespaceIncreaseStorageTemporarilyInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the namespace to mutate The global ID of the namespace to mutate
""" """
id: NamespaceID! id: NamespaceID!
} }
...@@ -15193,7 +15193,7 @@ input PipelineCancelInput { ...@@ -15193,7 +15193,7 @@ input PipelineCancelInput {
clientMutationId: String clientMutationId: String
""" """
The id of the pipeline to mutate The ID of the pipeline to mutate
""" """
id: CiPipelineID! id: CiPipelineID!
} }
...@@ -15259,7 +15259,7 @@ input PipelineDestroyInput { ...@@ -15259,7 +15259,7 @@ input PipelineDestroyInput {
clientMutationId: String clientMutationId: String
""" """
The id of the pipeline to mutate The ID of the pipeline to mutate
""" """
id: CiPipelineID! id: CiPipelineID!
} }
...@@ -15321,7 +15321,7 @@ input PipelineRetryInput { ...@@ -15321,7 +15321,7 @@ input PipelineRetryInput {
clientMutationId: String clientMutationId: String
""" """
The id of the pipeline to mutate The ID of the pipeline to mutate
""" """
id: CiPipelineID! id: CiPipelineID!
} }
...@@ -17646,7 +17646,7 @@ input PrometheusIntegrationResetTokenInput { ...@@ -17646,7 +17646,7 @@ input PrometheusIntegrationResetTokenInput {
clientMutationId: String clientMutationId: String
""" """
The id of the integration to mutate The ID of the integration to mutate
""" """
id: PrometheusServiceID! id: PrometheusServiceID!
} }
...@@ -17691,7 +17691,7 @@ input PrometheusIntegrationUpdateInput { ...@@ -17691,7 +17691,7 @@ input PrometheusIntegrationUpdateInput {
clientMutationId: String clientMutationId: String
""" """
The id of the integration to mutate The ID of the integration to mutate
""" """
id: PrometheusServiceID! id: PrometheusServiceID!
} }
...@@ -19027,7 +19027,7 @@ Autogenerated input type of RemoveAwardEmoji ...@@ -19027,7 +19027,7 @@ Autogenerated input type of RemoveAwardEmoji
""" """
input RemoveAwardEmojiInput { input RemoveAwardEmojiInput {
""" """
The global id of the awardable resource The global ID of the awardable resource
""" """
awardableId: AwardableID! awardableId: AwardableID!
...@@ -19102,7 +19102,7 @@ input RepositionImageDiffNoteInput { ...@@ -19102,7 +19102,7 @@ input RepositionImageDiffNoteInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the DiffNote to update The global ID of the DiffNote to update
""" """
id: DiffNoteID! id: DiffNoteID!
...@@ -22062,7 +22062,7 @@ input TodoMarkDoneInput { ...@@ -22062,7 +22062,7 @@ input TodoMarkDoneInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the todo to mark as done The global ID of the todo to mark as done
""" """
id: TodoID! id: TodoID!
} }
...@@ -22097,7 +22097,7 @@ input TodoRestoreInput { ...@@ -22097,7 +22097,7 @@ input TodoRestoreInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the todo to restore The global ID of the todo to restore
""" """
id: TodoID! id: TodoID!
} }
...@@ -22112,7 +22112,7 @@ input TodoRestoreManyInput { ...@@ -22112,7 +22112,7 @@ input TodoRestoreManyInput {
clientMutationId: String clientMutationId: String
""" """
The global ids of the todos to restore (a maximum of 50 is supported at once) The global IDs of the todos to restore (a maximum of 50 is supported at once)
""" """
ids: [TodoID!]! ids: [TodoID!]!
} }
...@@ -22137,7 +22137,7 @@ type TodoRestoreManyPayload { ...@@ -22137,7 +22137,7 @@ type TodoRestoreManyPayload {
todos: [Todo!]! todos: [Todo!]!
""" """
The ids of the updated todo items. Deprecated in 13.2: Use todos The IDs of the updated todo items. Deprecated in 13.2: Use todos
""" """
updatedIds: [TodoID!]! @deprecated(reason: "Use todos. Deprecated in 13.2") updatedIds: [TodoID!]! @deprecated(reason: "Use todos. Deprecated in 13.2")
} }
...@@ -22244,7 +22244,7 @@ Autogenerated input type of ToggleAwardEmoji ...@@ -22244,7 +22244,7 @@ Autogenerated input type of ToggleAwardEmoji
""" """
input ToggleAwardEmojiInput { input ToggleAwardEmojiInput {
""" """
The global id of the awardable resource The global ID of the awardable resource
""" """
awardableId: AwardableID! awardableId: AwardableID!
...@@ -22466,7 +22466,7 @@ input UpdateAlertStatusInput { ...@@ -22466,7 +22466,7 @@ input UpdateAlertStatusInput {
clientMutationId: String clientMutationId: String
""" """
The iid of the alert to mutate The IID of the alert to mutate
""" """
iid: String! iid: String!
...@@ -22561,7 +22561,7 @@ Autogenerated input type of UpdateBoard ...@@ -22561,7 +22561,7 @@ Autogenerated input type of UpdateBoard
""" """
input UpdateBoardInput { input UpdateBoardInput {
""" """
The id of user to be assigned to the board The ID of user to be assigned to the board
""" """
assigneeId: UserID assigneeId: UserID
...@@ -22596,7 +22596,7 @@ input UpdateBoardInput { ...@@ -22596,7 +22596,7 @@ input UpdateBoardInput {
labels: [String!] labels: [String!]
""" """
The id of milestone to be assigned to the board The ID of milestone to be assigned to the board
""" """
milestoneId: MilestoneID milestoneId: MilestoneID
...@@ -22848,7 +22848,7 @@ input UpdateEpicInput { ...@@ -22848,7 +22848,7 @@ input UpdateEpicInput {
groupPath: ID! groupPath: ID!
""" """
The iid of the epic to mutate The IID of the epic to mutate
""" """
iid: ID! iid: ID!
...@@ -22913,7 +22913,7 @@ input UpdateImageDiffNoteInput { ...@@ -22913,7 +22913,7 @@ input UpdateImageDiffNoteInput {
clientMutationId: String clientMutationId: String
""" """
The global id of the note to update The global ID of the note to update
""" """
id: NoteID! id: NoteID!
...@@ -23123,7 +23123,7 @@ input UpdateNoteInput { ...@@ -23123,7 +23123,7 @@ input UpdateNoteInput {
confidential: Boolean confidential: Boolean
""" """
The global id of the note to update The global ID of the note to update
""" """
id: NoteID! id: NoteID!
} }
...@@ -23163,7 +23163,7 @@ input UpdateRequirementInput { ...@@ -23163,7 +23163,7 @@ input UpdateRequirementInput {
description: String description: String
""" """
The iid of the requirement to update The IID of the requirement to update
""" """
iid: String! iid: String!
...@@ -23228,7 +23228,7 @@ input UpdateSnippetInput { ...@@ -23228,7 +23228,7 @@ input UpdateSnippetInput {
description: String description: String
""" """
The global id of the snippet to update The global ID of the snippet to update
""" """
id: SnippetID! id: SnippetID!
......
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "awardableId", "name": "awardableId",
"description": "The global id of the awardable resource", "description": "The global ID of the awardable resource",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -2103,7 +2103,7 @@ ...@@ -2103,7 +2103,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the alert to mutate", "description": "The IID of the alert to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -2279,7 +2279,7 @@ ...@@ -2279,7 +2279,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the alert to mutate", "description": "The IID of the alert to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -2563,7 +2563,7 @@ ...@@ -2563,7 +2563,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "awardableId", "name": "awardableId",
"description": "The global id of the awardable resource", "description": "The global ID of the awardable resource",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -2679,7 +2679,7 @@ ...@@ -2679,7 +2679,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "awardableId", "name": "awardableId",
"description": "The global id of the awardable resource", "description": "The global ID of the awardable resource",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -2795,7 +2795,7 @@ ...@@ -2795,7 +2795,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "awardableId", "name": "awardableId",
"description": "The global id of the awardable resource", "description": "The global ID of the awardable resource",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -3869,7 +3869,7 @@ ...@@ -3869,7 +3869,7 @@
}, },
{ {
"name": "iidStartsWith", "name": "iidStartsWith",
"description": "Filter epics by iid for autocomplete", "description": "Filter epics by IID for autocomplete",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "String", "name": "String",
...@@ -7113,7 +7113,7 @@ ...@@ -7113,7 +7113,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "Global id of the cluster agent that will be deleted", "description": "Global ID of the cluster agent that will be deleted",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -10019,7 +10019,7 @@ ...@@ -10019,7 +10019,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the alert to mutate", "description": "The IID of the alert to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -10149,7 +10149,7 @@ ...@@ -10149,7 +10149,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "environmentId", "name": "environmentId",
"description": "The global id of the environment to add an annotation to", "description": "The global ID of the environment to add an annotation to",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "EnvironmentID", "name": "EnvironmentID",
...@@ -10159,7 +10159,7 @@ ...@@ -10159,7 +10159,7 @@
}, },
{ {
"name": "clusterId", "name": "clusterId",
"description": "The global id of the cluster to add an annotation to", "description": "The global ID of the cluster to add an annotation to",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ClustersClusterID", "name": "ClustersClusterID",
...@@ -10971,7 +10971,7 @@ ...@@ -10971,7 +10971,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "noteableId", "name": "noteableId",
"description": "The global id of the resource to add a note to", "description": "The global ID of the resource to add a note to",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -11319,7 +11319,7 @@ ...@@ -11319,7 +11319,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "noteableId", "name": "noteableId",
"description": "The global id of the resource to add a note to", "description": "The global ID of the resource to add a note to",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -11897,7 +11897,7 @@ ...@@ -11897,7 +11897,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "noteableId", "name": "noteableId",
"description": "The global id of the resource to add a note to", "description": "The global ID of the resource to add a note to",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -11935,7 +11935,7 @@ ...@@ -11935,7 +11935,7 @@
}, },
{ {
"name": "discussionId", "name": "discussionId",
"description": "The global id of the discussion this note is in reply to", "description": "The global ID of the discussion this note is in reply to",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "DiscussionID", "name": "DiscussionID",
...@@ -16543,7 +16543,7 @@ ...@@ -16543,7 +16543,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the issue to modify designs for", "description": "The IID of the issue to modify designs for",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -16823,7 +16823,7 @@ ...@@ -16823,7 +16823,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the issue to modify designs for", "description": "The IID of the issue to modify designs for",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -17698,7 +17698,7 @@ ...@@ -17698,7 +17698,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the note to destroy", "description": "The global ID of the note to destroy",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -17800,7 +17800,7 @@ ...@@ -17800,7 +17800,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the snippet to destroy", "description": "The global ID of the snippet to destroy",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -19409,7 +19409,7 @@ ...@@ -19409,7 +19409,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the discussion", "description": "The global ID of the discussion",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -20298,7 +20298,7 @@ ...@@ -20298,7 +20298,7 @@
}, },
{ {
"name": "iidStartsWith", "name": "iidStartsWith",
"description": "Filter epics by iid for autocomplete", "description": "Filter epics by IID for autocomplete",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "String", "name": "String",
...@@ -21307,7 +21307,7 @@ ...@@ -21307,7 +21307,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "iid", "name": "iid",
"description": "The iid of the epic to mutate", "description": "The IID of the epic to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -21349,7 +21349,7 @@ ...@@ -21349,7 +21349,7 @@
}, },
{ {
"name": "issueIid", "name": "issueIid",
"description": "The iid of the issue to be added", "description": "The IID of the issue to be added",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -23214,7 +23214,7 @@ ...@@ -23214,7 +23214,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "iid", "name": "iid",
"description": "The iid of the epic to mutate", "description": "The IID of the epic to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -23431,7 +23431,7 @@ ...@@ -23431,7 +23431,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the epic_issue or epic that is being moved", "description": "The ID of the epic_issue or epic that is being moved",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -23445,7 +23445,7 @@ ...@@ -23445,7 +23445,7 @@
}, },
{ {
"name": "adjacentReferenceId", "name": "adjacentReferenceId",
"description": "The id of the epic_issue or issue that the actual epic or issue is switched with", "description": "The ID of the epic_issue or issue that the actual epic or issue is switched with",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "EpicTreeSortingID", "name": "EpicTreeSortingID",
...@@ -23486,7 +23486,7 @@ ...@@ -23486,7 +23486,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "baseEpicId", "name": "baseEpicId",
"description": "The id of the base epic of the tree", "description": "The ID of the base epic of the tree",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -24838,7 +24838,7 @@ ...@@ -24838,7 +24838,7 @@
}, },
{ {
"name": "iidStartsWith", "name": "iidStartsWith",
"description": "Filter epics by iid for autocomplete", "description": "Filter epics by IID for autocomplete",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "String", "name": "String",
...@@ -24997,7 +24997,7 @@ ...@@ -24997,7 +24997,7 @@
}, },
{ {
"name": "iidStartsWith", "name": "iidStartsWith",
"description": "Filter epics by iid for autocomplete", "description": "Filter epics by IID for autocomplete",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "String", "name": "String",
...@@ -27737,7 +27737,7 @@ ...@@ -27737,7 +27737,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the integration to remove", "description": "The ID of the integration to remove",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -27839,7 +27839,7 @@ ...@@ -27839,7 +27839,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the integration to mutate", "description": "The ID of the integration to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -27941,7 +27941,7 @@ ...@@ -27941,7 +27941,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the integration to mutate", "description": "The ID of the integration to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -33372,7 +33372,7 @@ ...@@ -33372,7 +33372,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "jiraAccountId", "name": "jiraAccountId",
"description": "Jira account id of the user", "description": "Jira account ID of the user",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -34014,7 +34014,7 @@ ...@@ -34014,7 +34014,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the snippet to update", "description": "The global ID of the snippet to update",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -36675,7 +36675,7 @@ ...@@ -36675,7 +36675,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the merge request to mutate", "description": "The IID of the merge request to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -36823,7 +36823,7 @@ ...@@ -36823,7 +36823,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the merge request to mutate", "description": "The IID of the merge request to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -36971,7 +36971,7 @@ ...@@ -36971,7 +36971,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the merge request to mutate", "description": "The IID of the merge request to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -37101,7 +37101,7 @@ ...@@ -37101,7 +37101,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the merge request to mutate", "description": "The IID of the merge request to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -37227,7 +37227,7 @@ ...@@ -37227,7 +37227,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the merge request to mutate", "description": "The IID of the merge request to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -37357,7 +37357,7 @@ ...@@ -37357,7 +37357,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the merge request to mutate", "description": "The IID of the merge request to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -37635,7 +37635,7 @@ ...@@ -37635,7 +37635,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the merge request to mutate", "description": "The IID of the merge request to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -42719,7 +42719,7 @@ ...@@ -42719,7 +42719,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the namespace to mutate", "description": "The global ID of the namespace to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -45092,7 +45092,7 @@ ...@@ -45092,7 +45092,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the pipeline to mutate", "description": "The ID of the pipeline to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -45324,7 +45324,7 @@ ...@@ -45324,7 +45324,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the pipeline to mutate", "description": "The ID of the pipeline to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -45524,7 +45524,7 @@ ...@@ -45524,7 +45524,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the pipeline to mutate", "description": "The ID of the pipeline to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -51582,7 +51582,7 @@ ...@@ -51582,7 +51582,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the integration to mutate", "description": "The ID of the integration to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -51684,7 +51684,7 @@ ...@@ -51684,7 +51684,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The id of the integration to mutate", "description": "The ID of the integration to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -55131,7 +55131,7 @@ ...@@ -55131,7 +55131,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "awardableId", "name": "awardableId",
"description": "The global id of the awardable resource", "description": "The global ID of the awardable resource",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -55335,7 +55335,7 @@ ...@@ -55335,7 +55335,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the DiffNote to update", "description": "The global ID of the DiffNote to update",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -64402,7 +64402,7 @@ ...@@ -64402,7 +64402,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the todo to mark as done", "description": "The global ID of the todo to mark as done",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -64508,7 +64508,7 @@ ...@@ -64508,7 +64508,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the todo to restore", "description": "The global ID of the todo to restore",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -64543,7 +64543,7 @@ ...@@ -64543,7 +64543,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "ids", "name": "ids",
"description": "The global ids of the todos to restore (a maximum of 50 is supported at once)", "description": "The global IDs of the todos to restore (a maximum of 50 is supported at once)",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -64651,7 +64651,7 @@ ...@@ -64651,7 +64651,7 @@
}, },
{ {
"name": "updatedIds", "name": "updatedIds",
"description": "The ids of the updated todo items. Deprecated in 13.2: Use todos", "description": "The IDs of the updated todo items. Deprecated in 13.2: Use todos",
"args": [ "args": [
], ],
...@@ -64968,7 +64968,7 @@ ...@@ -64968,7 +64968,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "awardableId", "name": "awardableId",
"description": "The global id of the awardable resource", "description": "The global ID of the awardable resource",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -65612,7 +65612,7 @@ ...@@ -65612,7 +65612,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the alert to mutate", "description": "The IID of the alert to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -65930,7 +65930,7 @@ ...@@ -65930,7 +65930,7 @@
}, },
{ {
"name": "assigneeId", "name": "assigneeId",
"description": "The id of user to be assigned to the board", "description": "The ID of user to be assigned to the board",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "UserID", "name": "UserID",
...@@ -65940,7 +65940,7 @@ ...@@ -65940,7 +65940,7 @@
}, },
{ {
"name": "milestoneId", "name": "milestoneId",
"description": "The id of milestone to be assigned to the board", "description": "The ID of milestone to be assigned to the board",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "MilestoneID", "name": "MilestoneID",
...@@ -66553,7 +66553,7 @@ ...@@ -66553,7 +66553,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "iid", "name": "iid",
"description": "The iid of the epic to mutate", "description": "The IID of the epic to mutate",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -66785,7 +66785,7 @@ ...@@ -66785,7 +66785,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the note to update", "description": "The global ID of the note to update",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -67315,7 +67315,7 @@ ...@@ -67315,7 +67315,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the note to update", "description": "The global ID of the note to update",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -67481,7 +67481,7 @@ ...@@ -67481,7 +67481,7 @@
}, },
{ {
"name": "iid", "name": "iid",
"description": "The iid of the requirement to update", "description": "The IID of the requirement to update",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -67593,7 +67593,7 @@ ...@@ -67593,7 +67593,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "The global id of the snippet to update", "description": "The global ID of the snippet to update",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -29,12 +29,12 @@ module Mutations ...@@ -29,12 +29,12 @@ module Mutations
::Types::GlobalIDType[::User], ::Types::GlobalIDType[::User],
required: false, required: false,
loads: ::Types::UserType, loads: ::Types::UserType,
description: 'The id of user to be assigned to the board' description: 'The ID of user to be assigned to the board'
argument :milestone_id, argument :milestone_id,
::Types::GlobalIDType[::Milestone], ::Types::GlobalIDType[::Milestone],
required: false, required: false,
description: 'The id of milestone to be assigned to the board' description: 'The ID of milestone to be assigned to the board'
argument :weight, argument :weight,
GraphQL::INT_TYPE, GraphQL::INT_TYPE,
......
...@@ -12,7 +12,7 @@ module Mutations ...@@ -12,7 +12,7 @@ module Mutations
argument :id, AgentID, argument :id, AgentID,
required: true, required: true,
description: 'Global id of the cluster agent that will be deleted' description: 'Global ID of the cluster agent that will be deleted'
def resolve(id:) def resolve(id:)
cluster_agent = authorized_find!(id: id) cluster_agent = authorized_find!(id: id)
......
...@@ -10,7 +10,7 @@ module Mutations ...@@ -10,7 +10,7 @@ module Mutations
argument :base_epic_id, argument :base_epic_id,
::Types::GlobalIDType[::Epic], ::Types::GlobalIDType[::Epic],
required: true, required: true,
description: 'The id of the base epic of the tree' description: 'The ID of the base epic of the tree'
argument :moved, argument :moved,
Types::EpicTree::EpicTreeNodeInputType, Types::EpicTree::EpicTreeNodeInputType,
......
...@@ -15,7 +15,7 @@ module Mutations ...@@ -15,7 +15,7 @@ module Mutations
argument :issue_iid, GraphQL::STRING_TYPE, argument :issue_iid, GraphQL::STRING_TYPE,
required: true, required: true,
description: 'The iid of the issue to be added' description: 'The IID of the issue to be added'
field :epic_issue, field :epic_issue,
Types::EpicIssueType, Types::EpicIssueType,
......
...@@ -7,7 +7,7 @@ module Mutations ...@@ -7,7 +7,7 @@ module Mutations
argument :iid, GraphQL::ID_TYPE, argument :iid, GraphQL::ID_TYPE,
required: true, required: true,
description: "The iid of the epic to mutate" description: "The IID of the epic to mutate"
argument :group_path, GraphQL::ID_TYPE, argument :group_path, GraphQL::ID_TYPE,
required: true, required: true,
......
...@@ -5,7 +5,7 @@ module Mutations ...@@ -5,7 +5,7 @@ module Mutations
class Base < ::Mutations::BaseMutation class Base < ::Mutations::BaseMutation
argument :id, ::Types::GlobalIDType[::Namespace], argument :id, ::Types::GlobalIDType[::Namespace],
required: true, required: true,
description: 'The global id of the namespace to mutate' description: 'The global ID of the namespace to mutate'
field :namespace, field :namespace,
Types::NamespaceType, Types::NamespaceType,
......
...@@ -13,7 +13,7 @@ module Mutations ...@@ -13,7 +13,7 @@ module Mutations
argument :iid, GraphQL::STRING_TYPE, argument :iid, GraphQL::STRING_TYPE,
required: true, required: true,
description: 'The iid of the requirement to update' description: 'The IID of the requirement to update'
argument :last_test_report_state, Types::RequirementsManagement::TestReportStateEnum, argument :last_test_report_state, Types::RequirementsManagement::TestReportStateEnum,
required: false, required: false,
......
...@@ -39,7 +39,7 @@ module Resolvers ...@@ -39,7 +39,7 @@ module Resolvers
argument :iid_starts_with, GraphQL::STRING_TYPE, argument :iid_starts_with, GraphQL::STRING_TYPE,
required: false, required: false,
description: 'Filter epics by iid for autocomplete' description: 'Filter epics by IID for autocomplete'
argument :include_descendant_groups, GraphQL::BOOLEAN_TYPE, argument :include_descendant_groups, GraphQL::BOOLEAN_TYPE,
required: false, required: false,
......
...@@ -10,12 +10,12 @@ module Types ...@@ -10,12 +10,12 @@ module Types
argument :id, argument :id,
::Types::GlobalIDType[::EpicTreeSorting], ::Types::GlobalIDType[::EpicTreeSorting],
required: true, required: true,
description: 'The id of the epic_issue or epic that is being moved' description: 'The ID of the epic_issue or epic that is being moved'
argument :adjacent_reference_id, argument :adjacent_reference_id,
::Types::GlobalIDType[::EpicTreeSorting], ::Types::GlobalIDType[::EpicTreeSorting],
required: false, required: false,
description: 'The id of the epic_issue or issue that the actual epic or issue is switched with' description: 'The ID of the epic_issue or issue that the actual epic or issue is switched with'
argument :relative_position, argument :relative_position,
MoveTypeEnum, MoveTypeEnum,
......
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