diff --git a/app/graphql/mutations/alert_management/http_integration/create.rb b/app/graphql/mutations/alert_management/http_integration/create.rb index 04840ac43bd821d586c0cd9f0a1cd7c96de3fd9a..f8d1a383706f6abc9618fb911d73044c7398093b 100644 --- a/app/graphql/mutations/alert_management/http_integration/create.rb +++ b/app/graphql/mutations/alert_management/http_integration/create.rb @@ -4,10 +4,10 @@ module Mutations module AlertManagement module HttpIntegration class Create < HttpIntegrationBase - include FindsProject - graphql_name 'HttpIntegrationCreate' + include FindsProject + argument :project_path, GraphQL::Types::ID, required: true, description: 'Project to create the integration in.' diff --git a/app/graphql/mutations/alert_management/prometheus_integration/create.rb b/app/graphql/mutations/alert_management/prometheus_integration/create.rb index 0153bd0e42a2d4937e179c5b8bab88bffa93917a..9c3aefce033a8550476a2bdc9660a16e0ecf5322 100644 --- a/app/graphql/mutations/alert_management/prometheus_integration/create.rb +++ b/app/graphql/mutations/alert_management/prometheus_integration/create.rb @@ -4,10 +4,10 @@ module Mutations module AlertManagement module PrometheusIntegration class Create < PrometheusIntegrationBase - include FindsProject - graphql_name 'PrometheusIntegrationCreate' + include FindsProject + argument :project_path, GraphQL::Types::ID, required: true, description: 'Project to create the integration in.' diff --git a/app/graphql/mutations/boards/create.rb b/app/graphql/mutations/boards/create.rb index 080bf7c6e79daeae5db57a92809777a4e4fb0db1..773ba08a291e9869694d3e0e37572395d8e9bd80 100644 --- a/app/graphql/mutations/boards/create.rb +++ b/app/graphql/mutations/boards/create.rb @@ -3,10 +3,9 @@ module Mutations module Boards class Create < ::Mutations::BaseMutation - include Mutations::ResolvesResourceParent - graphql_name 'CreateBoard' + include Mutations::ResolvesResourceParent include Mutations::Boards::CommonMutationArguments field :board, diff --git a/app/graphql/mutations/branches/create.rb b/app/graphql/mutations/branches/create.rb index 078c84bcdc00db2717c56f4caba8e0faa564cc3e..b851622bfde8b11c073332c9aff7c295b83195c4 100644 --- a/app/graphql/mutations/branches/create.rb +++ b/app/graphql/mutations/branches/create.rb @@ -3,10 +3,10 @@ module Mutations module Branches class Create < BaseMutation - include FindsProject - graphql_name 'CreateBranch' + include FindsProject + argument :project_path, GraphQL::Types::ID, required: true, description: 'Project full path the branch is associated with.' diff --git a/app/graphql/mutations/ci/ci_cd_settings_update.rb b/app/graphql/mutations/ci/ci_cd_settings_update.rb index 7bd38bc29982136efe14fdc2f27db8587748a58b..dec90ced9621369007b68f243ec09bdd16ec7773 100644 --- a/app/graphql/mutations/ci/ci_cd_settings_update.rb +++ b/app/graphql/mutations/ci/ci_cd_settings_update.rb @@ -3,10 +3,10 @@ module Mutations module Ci class CiCdSettingsUpdate < BaseMutation - include FindsProject - graphql_name 'CiCdSettingsUpdate' + include FindsProject + authorize :admin_project argument :full_path, GraphQL::Types::ID, diff --git a/app/graphql/mutations/ci/job_token_scope/add_project.rb b/app/graphql/mutations/ci/job_token_scope/add_project.rb index 41adcae2c8238d59340d5d949ea3c1bc4df5a728..e16c08cb116c4d263d83b99759f92fd9ddbeef20 100644 --- a/app/graphql/mutations/ci/job_token_scope/add_project.rb +++ b/app/graphql/mutations/ci/job_token_scope/add_project.rb @@ -4,10 +4,10 @@ module Mutations module Ci module JobTokenScope class AddProject < BaseMutation - include FindsProject - graphql_name 'CiJobTokenScopeAddProject' + include FindsProject + authorize :admin_project argument :project_path, GraphQL::Types::ID, diff --git a/app/graphql/mutations/ci/job_token_scope/remove_project.rb b/app/graphql/mutations/ci/job_token_scope/remove_project.rb index dd6b2358dd5fdc1801b028cb188721cc617f77a6..f503b4f2f7aab2d5f8898a15ce21f0e0c517f8ff 100644 --- a/app/graphql/mutations/ci/job_token_scope/remove_project.rb +++ b/app/graphql/mutations/ci/job_token_scope/remove_project.rb @@ -4,10 +4,10 @@ module Mutations module Ci module JobTokenScope class RemoveProject < BaseMutation - include FindsProject - graphql_name 'CiJobTokenScopeRemoveProject' + include FindsProject + authorize :admin_project argument :project_path, GraphQL::Types::ID, diff --git a/app/graphql/mutations/clusters/agents/create.rb b/app/graphql/mutations/clusters/agents/create.rb index 0896cc7b2035c397e0ed803fcc140782be5d6baa..deaa9c2d6568c68c23f6d9950b6375a08e67387a 100644 --- a/app/graphql/mutations/clusters/agents/create.rb +++ b/app/graphql/mutations/clusters/agents/create.rb @@ -4,12 +4,12 @@ module Mutations module Clusters module Agents class Create < BaseMutation + graphql_name 'CreateClusterAgent' + include FindsProject authorize :create_cluster - graphql_name 'CreateClusterAgent' - argument :project_path, GraphQL::Types::ID, required: true, description: 'Full path of the associated project for this cluster agent.' diff --git a/app/graphql/mutations/commits/create.rb b/app/graphql/mutations/commits/create.rb index 3eb1912dbc42234c2772ae50c3d6e7a6e2eaceaa..00ec64becc895887fd598ef800f40e1df7fc8b36 100644 --- a/app/graphql/mutations/commits/create.rb +++ b/app/graphql/mutations/commits/create.rb @@ -3,6 +3,8 @@ module Mutations module Commits class Create < BaseMutation + graphql_name 'CommitCreate' + include FindsProject class UrlHelpers @@ -10,8 +12,6 @@ class UrlHelpers include Gitlab::Routing end - graphql_name 'CommitCreate' - argument :project_path, GraphQL::Types::ID, required: true, description: 'Project full path the branch is associated with.' diff --git a/app/graphql/mutations/container_expiration_policies/update.rb b/app/graphql/mutations/container_expiration_policies/update.rb index db4acadfc38bafea4483e0713aa4404886d360e1..762058acf3d8daac028dedaae70dff575d2df528 100644 --- a/app/graphql/mutations/container_expiration_policies/update.rb +++ b/app/graphql/mutations/container_expiration_policies/update.rb @@ -3,10 +3,10 @@ module Mutations module ContainerExpirationPolicies class Update < Mutations::BaseMutation - include FindsProject - graphql_name 'UpdateContainerExpirationPolicy' + include FindsProject + authorize :destroy_container_image argument :project_path, diff --git a/app/graphql/mutations/container_repositories/destroy_tags.rb b/app/graphql/mutations/container_repositories/destroy_tags.rb index c2737820d2248fb600eaf14fd96b03c956688a09..7777f903516b7e87bdc6e809a48a134c5295ed87 100644 --- a/app/graphql/mutations/container_repositories/destroy_tags.rb +++ b/app/graphql/mutations/container_repositories/destroy_tags.rb @@ -3,12 +3,11 @@ module Mutations module ContainerRepositories class DestroyTags < ::Mutations::ContainerRepositories::DestroyBase - LIMIT = 20 + graphql_name 'DestroyContainerRepositoryTags' + LIMIT = 20 TOO_MANY_TAGS_ERROR_MESSAGE = "Number of tags is greater than #{LIMIT}" - graphql_name 'DestroyContainerRepositoryTags' - authorize :destroy_container_image argument :id, diff --git a/app/graphql/mutations/custom_emoji/create.rb b/app/graphql/mutations/custom_emoji/create.rb index ad392d6c81490602ab6c8022bb8b93cef053a417..269ea6c999981a7480ded46de83e4339332d1fd2 100644 --- a/app/graphql/mutations/custom_emoji/create.rb +++ b/app/graphql/mutations/custom_emoji/create.rb @@ -3,10 +3,10 @@ module Mutations module CustomEmoji class Create < BaseMutation - include Mutations::ResolvesGroup - graphql_name 'CreateCustomEmoji' + include Mutations::ResolvesGroup + authorize :create_custom_emoji field :custom_emoji, diff --git a/app/graphql/mutations/customer_relations/contacts/create.rb b/app/graphql/mutations/customer_relations/contacts/create.rb index 3495f30f2275358f83bc33d819d5eb90b1453f7e..96dc047c3dbf29154b147cb7eec1c6d2fb006c14 100644 --- a/app/graphql/mutations/customer_relations/contacts/create.rb +++ b/app/graphql/mutations/customer_relations/contacts/create.rb @@ -4,11 +4,11 @@ module Mutations module CustomerRelations module Contacts class Create < BaseMutation + graphql_name 'CustomerRelationsContactCreate' + include ResolvesIds include Gitlab::Graphql::Authorize::AuthorizeResource - graphql_name 'CustomerRelationsContactCreate' - field :contact, Types::CustomerRelations::ContactType, null: true, diff --git a/app/graphql/mutations/customer_relations/contacts/update.rb b/app/graphql/mutations/customer_relations/contacts/update.rb index e2f671058f0bbf97d7fb1a1cba7a2492c85e52f0..a3abf37f21f65ed8f2072a569de86312d4e339a2 100644 --- a/app/graphql/mutations/customer_relations/contacts/update.rb +++ b/app/graphql/mutations/customer_relations/contacts/update.rb @@ -4,10 +4,10 @@ module Mutations module CustomerRelations module Contacts class Update < Mutations::BaseMutation - include ResolvesIds - graphql_name 'CustomerRelationsContactUpdate' + include ResolvesIds + authorize :admin_crm_contact field :contact, diff --git a/app/graphql/mutations/customer_relations/organizations/create.rb b/app/graphql/mutations/customer_relations/organizations/create.rb index 17e0e9ad459e42bba4c313e0c01f2993e2639277..43c50a9fb30cc0ba10aebff50f9724302482bc42 100644 --- a/app/graphql/mutations/customer_relations/organizations/create.rb +++ b/app/graphql/mutations/customer_relations/organizations/create.rb @@ -4,11 +4,11 @@ module Mutations module CustomerRelations module Organizations class Create < BaseMutation + graphql_name 'CustomerRelationsOrganizationCreate' + include ResolvesIds include Gitlab::Graphql::Authorize::AuthorizeResource - graphql_name 'CustomerRelationsOrganizationCreate' - field :organization, Types::CustomerRelations::OrganizationType, null: true, diff --git a/app/graphql/mutations/customer_relations/organizations/update.rb b/app/graphql/mutations/customer_relations/organizations/update.rb index 21fcf565239e74e1c2554c710ab555317ef738c3..0c05541dbd701127920347b722e92132d8310457 100644 --- a/app/graphql/mutations/customer_relations/organizations/update.rb +++ b/app/graphql/mutations/customer_relations/organizations/update.rb @@ -4,10 +4,10 @@ module Mutations module CustomerRelations module Organizations class Update < Mutations::BaseMutation - include ResolvesIds - graphql_name 'CustomerRelationsOrganizationUpdate' + include ResolvesIds + authorize :admin_crm_organization field :organization, diff --git a/app/graphql/mutations/dependency_proxy/group_settings/update.rb b/app/graphql/mutations/dependency_proxy/group_settings/update.rb index d10e43cde293e26e05d8dd04357a98d3cd42789f..65c919db3c322efd2d4e1775b14c8c6a683a1df3 100644 --- a/app/graphql/mutations/dependency_proxy/group_settings/update.rb +++ b/app/graphql/mutations/dependency_proxy/group_settings/update.rb @@ -4,10 +4,10 @@ module Mutations module DependencyProxy module GroupSettings class Update < Mutations::BaseMutation - include Mutations::ResolvesGroup - graphql_name 'UpdateDependencyProxySettings' + include Mutations::ResolvesGroup + authorize :admin_dependency_proxy argument :group_path, diff --git a/app/graphql/mutations/dependency_proxy/image_ttl_group_policy/update.rb b/app/graphql/mutations/dependency_proxy/image_ttl_group_policy/update.rb index a5eb114b2da221cc55fa60fbec78badfb8893ccc..79d7a93c4e25501aac7f2d51dbd96c6a4d908c39 100644 --- a/app/graphql/mutations/dependency_proxy/image_ttl_group_policy/update.rb +++ b/app/graphql/mutations/dependency_proxy/image_ttl_group_policy/update.rb @@ -4,10 +4,10 @@ module Mutations module DependencyProxy module ImageTtlGroupPolicy class Update < Mutations::BaseMutation - include Mutations::ResolvesGroup - graphql_name 'UpdateDependencyProxyImageTtlGroupPolicy' + include Mutations::ResolvesGroup + authorize :admin_dependency_proxy argument :group_path, diff --git a/app/graphql/mutations/design_management/delete.rb b/app/graphql/mutations/design_management/delete.rb index 4e9f0aad93496f3c9495d164695ba0064c2378f0..9e6431106286ca2b4f9ca3ddb4450be826ba731e 100644 --- a/app/graphql/mutations/design_management/delete.rb +++ b/app/graphql/mutations/design_management/delete.rb @@ -3,10 +3,10 @@ module Mutations module DesignManagement class Delete < Base - Errors = ::Gitlab::Graphql::Errors - graphql_name "DesignManagementDelete" + Errors = ::Gitlab::Graphql::Errors + argument :filenames, [GraphQL::Types::String], required: true, description: "Filenames of the designs to delete.", diff --git a/app/graphql/mutations/groups/update.rb b/app/graphql/mutations/groups/update.rb index 9c5628a57cd848001ca838c172ce45de42bd593e..be7a14d0b438ec555df62e9484b126739df1ced0 100644 --- a/app/graphql/mutations/groups/update.rb +++ b/app/graphql/mutations/groups/update.rb @@ -3,10 +3,10 @@ module Mutations module Groups class Update < Mutations::BaseMutation - include Mutations::ResolvesGroup - graphql_name 'GroupUpdate' + include Mutations::ResolvesGroup + authorize :admin_group field :group, Types::GroupType, diff --git a/app/graphql/mutations/issues/create.rb b/app/graphql/mutations/issues/create.rb index 1f1df9ff6367cb474151388ccaea9101ba07e8ce..6bf8caf82d7894c08389163da631e2b6b59c5a24 100644 --- a/app/graphql/mutations/issues/create.rb +++ b/app/graphql/mutations/issues/create.rb @@ -3,12 +3,12 @@ module Mutations module Issues class Create < BaseMutation + graphql_name 'CreateIssue' + include Mutations::SpamProtection include FindsProject include CommonMutationArguments - graphql_name 'CreateIssue' - authorize :create_issue argument :project_path, GraphQL::Types::ID, diff --git a/app/graphql/mutations/issues/set_confidential.rb b/app/graphql/mutations/issues/set_confidential.rb index 35e629ddc90de24caf5c81296c77175f88e0a6df..abfd6fec0bdf0d2541ff613a2155dc7a58d1b6ab 100644 --- a/app/graphql/mutations/issues/set_confidential.rb +++ b/app/graphql/mutations/issues/set_confidential.rb @@ -3,10 +3,10 @@ module Mutations module Issues class SetConfidential < Base - include Mutations::SpamProtection - graphql_name 'IssueSetConfidential' + include Mutations::SpamProtection + argument :confidential, GraphQL::Types::Boolean, required: true, diff --git a/app/graphql/mutations/jira_import/import_users.rb b/app/graphql/mutations/jira_import/import_users.rb index 8d82a058dd0ed736ba38cb2eff7251dd26345ea4..b3874caee61a22a97c848933c83c452737f79f3b 100644 --- a/app/graphql/mutations/jira_import/import_users.rb +++ b/app/graphql/mutations/jira_import/import_users.rb @@ -3,10 +3,10 @@ module Mutations module JiraImport class ImportUsers < BaseMutation - include FindsProject - graphql_name 'JiraImportUsers' + include FindsProject + authorize :admin_project field :jira_users, diff --git a/app/graphql/mutations/jira_import/start.rb b/app/graphql/mutations/jira_import/start.rb index 4929d6f394a89f8148b54e6559ad254e443533cb..ea071c45bcfb4b5bd345e4d3b5990e1c3a33621d 100644 --- a/app/graphql/mutations/jira_import/start.rb +++ b/app/graphql/mutations/jira_import/start.rb @@ -3,10 +3,10 @@ module Mutations module JiraImport class Start < BaseMutation - include FindsProject - graphql_name 'JiraImportStart' + include FindsProject + authorize :admin_project field :jira_import, diff --git a/app/graphql/mutations/labels/create.rb b/app/graphql/mutations/labels/create.rb index cb3ba7939aebefa0308ea5149c7be0030fc1bc8d..3cd41dc01deb98e79f487c1c5e48b34ba64d0aec 100644 --- a/app/graphql/mutations/labels/create.rb +++ b/app/graphql/mutations/labels/create.rb @@ -3,10 +3,10 @@ module Mutations module Labels class Create < BaseMutation - include Mutations::ResolvesResourceParent - graphql_name 'LabelCreate' + include Mutations::ResolvesResourceParent + field :label, Types::LabelType, null: true, diff --git a/app/graphql/mutations/merge_requests/accept.rb b/app/graphql/mutations/merge_requests/accept.rb index 7ce850901afbe5e339e8e01b303e583edb049927..ebd9e2b8fdd8d417a54d4c075fef441a18c08e78 100644 --- a/app/graphql/mutations/merge_requests/accept.rb +++ b/app/graphql/mutations/merge_requests/accept.rb @@ -3,12 +3,6 @@ module Mutations module MergeRequests class Accept < Base - NOT_MERGEABLE = 'This branch cannot be merged' - HOOKS_VALIDATION_ERROR = 'Pre-merge hooks failed' - SHA_MISMATCH = 'The merge-head is not at the anticipated SHA' - MERGE_FAILED = 'The merge failed' - ALREADY_SCHEDULED = 'The merge request is already scheduled to be merged' - graphql_name 'MergeRequestAccept' authorize :accept_merge_request description <<~DESC @@ -17,6 +11,12 @@ class Accept < Base immediately if possible, or using one of the automatic merge strategies. DESC + NOT_MERGEABLE = 'This branch cannot be merged' + HOOKS_VALIDATION_ERROR = 'Pre-merge hooks failed' + SHA_MISMATCH = 'The merge-head is not at the anticipated SHA' + MERGE_FAILED = 'The merge failed' + ALREADY_SCHEDULED = 'The merge request is already scheduled to be merged' + argument :strategy, ::Types::MergeStrategyEnum, required: false, diff --git a/app/graphql/mutations/merge_requests/create.rb b/app/graphql/mutations/merge_requests/create.rb index dc1d5a22bc931c5d1e08d19a61c2b18321862d91..2883c02a6716f373bf1453a415488cb7aa70fa3a 100644 --- a/app/graphql/mutations/merge_requests/create.rb +++ b/app/graphql/mutations/merge_requests/create.rb @@ -3,10 +3,10 @@ module Mutations module MergeRequests class Create < BaseMutation - include FindsProject - graphql_name 'MergeRequestCreate' + include FindsProject + argument :project_path, GraphQL::Types::ID, required: true, description: 'Project full path the merge request is associated with.' diff --git a/app/graphql/mutations/namespace/package_settings/update.rb b/app/graphql/mutations/namespace/package_settings/update.rb index 400169d6b641f0e39a4a87c7cf005507a1459303..934b75193d7f09acaf29de489b5479e965247450 100644 --- a/app/graphql/mutations/namespace/package_settings/update.rb +++ b/app/graphql/mutations/namespace/package_settings/update.rb @@ -4,10 +4,10 @@ module Mutations module Namespace module PackageSettings class Update < Mutations::BaseMutation - include Mutations::ResolvesNamespace - graphql_name 'UpdateNamespacePackageSettings' + include Mutations::ResolvesNamespace + authorize :create_package_settings argument :namespace_path, diff --git a/app/graphql/mutations/release_asset_links/create.rb b/app/graphql/mutations/release_asset_links/create.rb index db486640507b9056fe6239a1033d68197172bfa3..f6445514ce94fcb1f877dcaa816c572b0e2f9244 100644 --- a/app/graphql/mutations/release_asset_links/create.rb +++ b/app/graphql/mutations/release_asset_links/create.rb @@ -3,14 +3,13 @@ module Mutations module ReleaseAssetLinks class Create < BaseMutation - include FindsProject - graphql_name 'ReleaseAssetLinkCreate' - authorize :create_release - + include FindsProject include Types::ReleaseAssetLinkSharedInputArguments + authorize :create_release + argument :project_path, GraphQL::Types::ID, required: true, description: 'Full path of the project the asset link is associated with.' diff --git a/app/graphql/mutations/snippets/create.rb b/app/graphql/mutations/snippets/create.rb index c01b0e4a01b2e547dad6c81f946bdcf242f4181a..850e05b52c1af16670e7ff70ff01a4717a04b372 100644 --- a/app/graphql/mutations/snippets/create.rb +++ b/app/graphql/mutations/snippets/create.rb @@ -3,14 +3,14 @@ module Mutations module Snippets class Create < BaseMutation + graphql_name 'CreateSnippet' + include ServiceCompatibility include CanMutateSpammable include Mutations::SpamProtection authorize :create_snippet - graphql_name 'CreateSnippet' - field :snippet, Types::SnippetType, null: true, diff --git a/app/graphql/mutations/snippets/update.rb b/app/graphql/mutations/snippets/update.rb index 9ecaa8d4bf2b286794e0cc9c112824448fe562fc..aa0fa5d533091ebf7673be7cc43d1f759a837162 100644 --- a/app/graphql/mutations/snippets/update.rb +++ b/app/graphql/mutations/snippets/update.rb @@ -3,12 +3,12 @@ module Mutations module Snippets class Update < Base + graphql_name 'UpdateSnippet' + include ServiceCompatibility include CanMutateSpammable include Mutations::SpamProtection - graphql_name 'UpdateSnippet' - argument :id, ::Types::GlobalIDType[::Snippet], required: true, description: 'Global ID of the snippet to update.' diff --git a/app/graphql/mutations/work_items/create.rb b/app/graphql/mutations/work_items/create.rb index 3e76239396af1d64656770cd016eb8c9369b2bf5..a5d713d70b587a6274f67aca306c7b2c03abe59d 100644 --- a/app/graphql/mutations/work_items/create.rb +++ b/app/graphql/mutations/work_items/create.rb @@ -3,11 +3,11 @@ module Mutations module WorkItems class Create < BaseMutation + graphql_name 'WorkItemCreate' + include Mutations::SpamProtection include FindsProject - graphql_name 'WorkItemCreate' - authorize :create_work_item argument :description, GraphQL::Types::String, diff --git a/app/graphql/mutations/work_items/delete.rb b/app/graphql/mutations/work_items/delete.rb index 6a3e651bdd5c4110b13824fef6ba314ae2e8be14..71792a802c061cebb8097af7d6fa819e6386982d 100644 --- a/app/graphql/mutations/work_items/delete.rb +++ b/app/graphql/mutations/work_items/delete.rb @@ -3,11 +3,10 @@ module Mutations module WorkItems class Delete < BaseMutation + graphql_name 'WorkItemDelete' description "Deletes a work item." \ " Available only when feature flag `work_items` is enabled. The feature is experimental and is subject to change without notice." - graphql_name 'WorkItemDelete' - authorize :delete_work_item argument :id, ::Types::GlobalIDType[::WorkItem], diff --git a/app/graphql/mutations/work_items/update.rb b/app/graphql/mutations/work_items/update.rb index 2c0d45dfc04ab7b00fec04d3f5602b07c1420722..3ab9ba2d502bef247e9a21644203ae1fb607e20a 100644 --- a/app/graphql/mutations/work_items/update.rb +++ b/app/graphql/mutations/work_items/update.rb @@ -3,12 +3,11 @@ module Mutations module WorkItems class Update < BaseMutation - include Mutations::SpamProtection - + graphql_name 'WorkItemUpdate' description "Updates a work item by Global ID." \ " Available only when feature flag `work_items` is enabled. The feature is experimental and is subject to change without notice." - graphql_name 'WorkItemUpdate' + include Mutations::SpamProtection authorize :update_work_item diff --git a/app/graphql/types/admin/analytics/usage_trends/measurement_type.rb b/app/graphql/types/admin/analytics/usage_trends/measurement_type.rb index 8276549ddcc37deb1780f36cf5fa9ed86f373eeb..1fc47303d671ccd6d54750da391aff646ed3fd49 100644 --- a/app/graphql/types/admin/analytics/usage_trends/measurement_type.rb +++ b/app/graphql/types/admin/analytics/usage_trends/measurement_type.rb @@ -5,10 +5,11 @@ module Admin module Analytics module UsageTrends class MeasurementType < BaseObject - include Gitlab::Graphql::Authorize::AuthorizeResource graphql_name 'UsageTrendsMeasurement' description 'Represents a recorded measurement (object count) for the Admins' + include Gitlab::Graphql::Authorize::AuthorizeResource + authorize :read_usage_trends_measurement field :recorded_at, Types::TimeType, null: true, diff --git a/app/graphql/types/alert_management/prometheus_integration_type.rb b/app/graphql/types/alert_management/prometheus_integration_type.rb index 27e4832d8f6412c7e0697d160557e2d3822560ae..9a2ef78eca70bc5bd624c52450a1272589138790 100644 --- a/app/graphql/types/alert_management/prometheus_integration_type.rb +++ b/app/graphql/types/alert_management/prometheus_integration_type.rb @@ -3,11 +3,11 @@ module Types module AlertManagement class PrometheusIntegrationType < ::Types::BaseObject - include ::Gitlab::Routing - graphql_name 'AlertManagementPrometheusIntegration' description 'An endpoint and credentials used to accept Prometheus alerts for a project' + include ::Gitlab::Routing + implements(Types::AlertManagement::IntegrationType) authorize :admin_project diff --git a/app/graphql/types/board_list_type.rb b/app/graphql/types/board_list_type.rb index 8c67803e39e17cc0c7065fae6e8b50981af6b6a2..733006369eaa949b93d58cb2ca561f0bcd930fcf 100644 --- a/app/graphql/types/board_list_type.rb +++ b/app/graphql/types/board_list_type.rb @@ -3,11 +3,11 @@ module Types # rubocop: disable Graphql/AuthorizeTypes class BoardListType < BaseObject - include Gitlab::Utils::StrongMemoize - graphql_name 'BoardList' description 'Represents a list for an issue board' + include Gitlab::Utils::StrongMemoize + alias_method :list, :object field :id, GraphQL::Types::ID, diff --git a/app/graphql/types/ci/runner_type.rb b/app/graphql/types/ci/runner_type.rb index e13b93dcf0e3c1395f9f25392c26a2a7bef00896..f3b7b067c93535a13a974aa8145282fc6cdfa7be 100644 --- a/app/graphql/types/ci/runner_type.rb +++ b/app/graphql/types/ci/runner_type.rb @@ -3,12 +3,13 @@ module Types module Ci class RunnerType < BaseObject + graphql_name 'CiRunner' + edge_type_class(RunnerWebUrlEdge) connection_type_class(Types::CountableConnectionType) - graphql_name 'CiRunner' + authorize :read_runner present_using ::Ci::RunnerPresenter - expose_permissions Types::PermissionTypes::Ci::Runner JOB_COUNT_LIMIT = 1000 diff --git a/app/graphql/types/group_invitation_type.rb b/app/graphql/types/group_invitation_type.rb index 9410253553c9ea4d80fa227a385e208791b15898..48281dcfd9f7b424843cce17a3063a326276e191 100644 --- a/app/graphql/types/group_invitation_type.rb +++ b/app/graphql/types/group_invitation_type.rb @@ -2,14 +2,14 @@ module Types class GroupInvitationType < BaseObject + graphql_name 'GroupInvitation' + description 'Represents a Group Invitation' + expose_permissions Types::PermissionTypes::Group authorize :admin_group implements InvitationInterface - graphql_name 'GroupInvitation' - description 'Represents a Group Invitation' - field :group, Types::GroupType, null: true, description: 'Group that a User is invited to.' diff --git a/app/graphql/types/group_member_type.rb b/app/graphql/types/group_member_type.rb index 8b8e69d795d4ac269a39e6f5be5a6ed6e7715d23..d68abc11bbace174f34d924b56b6b0842ca41d8e 100644 --- a/app/graphql/types/group_member_type.rb +++ b/app/graphql/types/group_member_type.rb @@ -2,14 +2,14 @@ module Types class GroupMemberType < BaseObject + graphql_name 'GroupMember' + description 'Represents a Group Membership' + expose_permissions Types::PermissionTypes::Group authorize :read_group implements MemberInterface - graphql_name 'GroupMember' - description 'Represents a Group Membership' - field :group, Types::GroupType, null: true, description: 'Group that a User is a member of.' diff --git a/app/graphql/types/merge_requests/assignee_type.rb b/app/graphql/types/merge_requests/assignee_type.rb index 8448477370e3293d7ff9a6d2521f60bb2f18e0c0..24321d057a33b9cc3420242dd69d5780e311c18c 100644 --- a/app/graphql/types/merge_requests/assignee_type.rb +++ b/app/graphql/types/merge_requests/assignee_type.rb @@ -3,11 +3,12 @@ module Types module MergeRequests class AssigneeType < ::Types::UserType + graphql_name 'MergeRequestAssignee' + description 'A user assigned to a merge request.' + include FindClosest include ::Types::MergeRequests::InteractsWithMergeRequest - graphql_name 'MergeRequestAssignee' - description 'A user assigned to a merge request.' authorize :read_user end end diff --git a/app/graphql/types/merge_requests/reviewer_type.rb b/app/graphql/types/merge_requests/reviewer_type.rb index 1ced821c83952490c5b3334cba78fc95ac5bc266..11f7ceaf461ee71489750534e08c7f9902a0890b 100644 --- a/app/graphql/types/merge_requests/reviewer_type.rb +++ b/app/graphql/types/merge_requests/reviewer_type.rb @@ -3,11 +3,12 @@ module Types module MergeRequests class ReviewerType < ::Types::UserType + graphql_name 'MergeRequestReviewer' + description 'A user assigned to a merge request as a reviewer.' + include FindClosest include ::Types::MergeRequests::InteractsWithMergeRequest - graphql_name 'MergeRequestReviewer' - description 'A user assigned to a merge request as a reviewer.' authorize :read_user end end diff --git a/app/graphql/types/metrics/dashboards/annotation_type.rb b/app/graphql/types/metrics/dashboards/annotation_type.rb index fb35f2bd9a1ba2d90c174ad2f89bb621ded6de9a..0c787476f5431a24bce79dc1356efae6b6e431e0 100644 --- a/app/graphql/types/metrics/dashboards/annotation_type.rb +++ b/app/graphql/types/metrics/dashboards/annotation_type.rb @@ -4,8 +4,8 @@ module Types module Metrics module Dashboards class AnnotationType < ::Types::BaseObject - authorize :read_metrics_dashboard_annotation graphql_name 'MetricsDashboardAnnotation' + authorize :read_metrics_dashboard_annotation field :description, GraphQL::Types::String, null: true, description: 'Description of the annotation.' diff --git a/app/graphql/types/mutation_type.rb b/app/graphql/types/mutation_type.rb index bcf64b79a852c1070a68d06dfee62c939361722c..d16a7c77320ccf7aeb79c55224d1e3074441f0e0 100644 --- a/app/graphql/types/mutation_type.rb +++ b/app/graphql/types/mutation_type.rb @@ -2,10 +2,10 @@ module Types class MutationType < BaseObject - include Gitlab::Graphql::MountMutation - graphql_name 'Mutation' + include Gitlab::Graphql::MountMutation + mount_mutation Mutations::Admin::SidekiqQueues::DeleteJobs mount_mutation Mutations::AlertManagement::CreateAlertIssue mount_mutation Mutations::AlertManagement::UpdateAlertStatus diff --git a/app/graphql/types/notes/discussion_type.rb b/app/graphql/types/notes/discussion_type.rb index 56579c357a7ecb51f4f4e433b4baa37d6f3ad4b0..ffe61c9ff88b9541bf970eaf3feb9ae0b7008803 100644 --- a/app/graphql/types/notes/discussion_type.rb +++ b/app/graphql/types/notes/discussion_type.rb @@ -3,10 +3,10 @@ module Types module Notes class DiscussionType < BaseObject - DiscussionID = ::Types::GlobalIDType[::Discussion] - graphql_name 'Discussion' + DiscussionID = ::Types::GlobalIDType[::Discussion] + authorize :read_note implements(Types::ResolvableInterface) diff --git a/app/graphql/types/packages/package_details_type.rb b/app/graphql/types/packages/package_details_type.rb index 3c64a52aa49af9f67a77a2e89b69cae32127e510..444ecb5e79235cfd1208b45bd53f89e9bb89db81 100644 --- a/app/graphql/types/packages/package_details_type.rb +++ b/app/graphql/types/packages/package_details_type.rb @@ -3,10 +3,11 @@ module Types module Packages class PackageDetailsType < PackageType - include ::PackagesHelper - graphql_name 'PackageDetailsType' description 'Represents a package details in the Package Registry. Note that this type is in beta and susceptible to changes' + + include ::PackagesHelper + authorize :read_package field :versions, ::Types::Packages::PackageType.connection_type, null: true, diff --git a/app/graphql/types/permission_types/issue.rb b/app/graphql/types/permission_types/issue.rb index 94e1bffd68527dc2bdccca419f64df5fd98817f1..b38971b64cd7c44dceb11a532dd278cb464ba093 100644 --- a/app/graphql/types/permission_types/issue.rb +++ b/app/graphql/types/permission_types/issue.rb @@ -3,8 +3,8 @@ module Types module PermissionTypes class Issue < BasePermissionType - description 'Check permissions for the current user on a issue' graphql_name 'IssuePermissions' + description 'Check permissions for the current user on a issue' abilities :read_issue, :admin_issue, :update_issue, :reopen_issue, :read_design, :create_design, :destroy_design, diff --git a/app/graphql/types/permission_types/merge_request.rb b/app/graphql/types/permission_types/merge_request.rb index 52c11fe558867bae81345c10f0dc380e4bcc03a9..73a2f820f7965a4a2bc6d63d170f91abfc5b9206 100644 --- a/app/graphql/types/permission_types/merge_request.rb +++ b/app/graphql/types/permission_types/merge_request.rb @@ -3,15 +3,16 @@ module Types module PermissionTypes class MergeRequest < BasePermissionType + graphql_name 'MergeRequestPermissions' + description 'Check permissions for the current user on a merge request' + + present_using MergeRequestPresenter + PERMISSION_FIELDS = %i[push_to_source_branch remove_source_branch cherry_pick_on_current_merge_request revert_on_current_merge_request].freeze - present_using MergeRequestPresenter - description 'Check permissions for the current user on a merge request' - graphql_name 'MergeRequestPermissions' - abilities :read_merge_request, :admin_merge_request, :update_merge_request, :create_note diff --git a/app/graphql/types/query_complexity_type.rb b/app/graphql/types/query_complexity_type.rb index 3f58a15aef70280c2be676fc4db83c120de24b74..13b618cf5cea8f814c5697497739c38b7f2799bd 100644 --- a/app/graphql/types/query_complexity_type.rb +++ b/app/graphql/types/query_complexity_type.rb @@ -3,10 +3,10 @@ module Types # rubocop: disable Graphql/AuthorizeTypes class QueryComplexityType < ::Types::BaseObject - ANALYZER = GraphQL::Analysis::QueryComplexity.new { |_query, complexity| complexity } - graphql_name 'QueryComplexity' + ANALYZER = GraphQL::Analysis::QueryComplexity.new { |_query, complexity| complexity } + alias_method :query, :object field :limit, GraphQL::Types::Int, diff --git a/app/graphql/types/repository/blob_type.rb b/app/graphql/types/repository/blob_type.rb index 6a1adc478a50c4290111564ca874496bc25b256e..bfd59763a0725e7c5d28242fb8403edbe49dea9e 100644 --- a/app/graphql/types/repository/blob_type.rb +++ b/app/graphql/types/repository/blob_type.rb @@ -4,10 +4,10 @@ module Repository # rubocop: disable Graphql/AuthorizeTypes # This is presented through `Repository` that has its own authorization class BlobType < BaseObject - present_using BlobPresenter - graphql_name 'RepositoryBlob' + present_using BlobPresenter + field :id, GraphQL::Types::ID, null: false, description: 'ID of the blob.' diff --git a/app/graphql/types/terraform/state_version_type.rb b/app/graphql/types/terraform/state_version_type.rb index bf1af4565bc907bf301274358e296a11c7c3a710..59da550aa1bb506404ef459378be7cbab2f1bff4 100644 --- a/app/graphql/types/terraform/state_version_type.rb +++ b/app/graphql/types/terraform/state_version_type.rb @@ -3,10 +3,10 @@ module Types module Terraform class StateVersionType < BaseObject - include ::API::Helpers::RelatedResourcesHelpers - graphql_name 'TerraformStateVersion' + include ::API::Helpers::RelatedResourcesHelpers + authorize :read_terraform_state field :id, GraphQL::Types::ID, diff --git a/app/graphql/types/tree/blob_type.rb b/app/graphql/types/tree/blob_type.rb index bb15d91a62fa448852406df5dc5ce288c29b1596..bcff65be652b999a3832b3eca6fb4535beda8a04 100644 --- a/app/graphql/types/tree/blob_type.rb +++ b/app/graphql/types/tree/blob_type.rb @@ -4,12 +4,11 @@ module Tree # rubocop: disable Graphql/AuthorizeTypes # This is presented through `Repository` that has its own authorization class BlobType < BaseObject - implements Types::Tree::EntryType + graphql_name 'Blob' + implements Types::Tree::EntryType present_using BlobPresenter - graphql_name 'Blob' - field :web_url, GraphQL::Types::String, null: true, description: 'Web URL of the blob.' field :web_path, GraphQL::Types::String, null: true, diff --git a/app/graphql/types/tree/submodule_type.rb b/app/graphql/types/tree/submodule_type.rb index 05d8c1a951abf29217ec57833427d94a75444273..bc7828dbffac9b67807e47db288135070ee217e6 100644 --- a/app/graphql/types/tree/submodule_type.rb +++ b/app/graphql/types/tree/submodule_type.rb @@ -4,10 +4,10 @@ module Tree # rubocop: disable Graphql/AuthorizeTypes # This is presented through `Repository` that has its own authorization class SubmoduleType < BaseObject - implements Types::Tree::EntryType - graphql_name 'Submodule' + implements Types::Tree::EntryType + field :web_url, type: GraphQL::Types::String, null: true, description: 'Web URL for the sub-module.' field :tree_url, type: GraphQL::Types::String, null: true, diff --git a/app/graphql/types/tree/tree_entry_type.rb b/app/graphql/types/tree/tree_entry_type.rb index 998b36175742716b5673a322383ada78fd4af143..cdc84c8e31862a398e08524c5ce169a185d85a17 100644 --- a/app/graphql/types/tree/tree_entry_type.rb +++ b/app/graphql/types/tree/tree_entry_type.rb @@ -4,13 +4,12 @@ module Tree # rubocop: disable Graphql/AuthorizeTypes # This is presented through `Repository` that has its own authorization class TreeEntryType < BaseObject - implements Types::Tree::EntryType - - present_using TreeEntryPresenter - graphql_name 'TreeEntry' description 'Represents a directory' + implements Types::Tree::EntryType + present_using TreeEntryPresenter + field :web_url, GraphQL::Types::String, null: true, description: 'Web URL for the tree entry (directory).' field :web_path, GraphQL::Types::String, null: true, diff --git a/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/bulk_enable.rb b/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/bulk_enable.rb index 1109e7f8b126ad2cb26815e17a2047b8a83c9616..e3ba6b59910ff6ae554a1e00a6a266f5581f919c 100644 --- a/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/bulk_enable.rb +++ b/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/bulk_enable.rb @@ -5,12 +5,11 @@ module Analytics module DevopsAdoption module EnabledNamespaces class BulkEnable < BaseMutation - include Mixins::CommonMethods - graphql_name 'BulkEnableDevopsAdoptionNamespaces' - description '**BETA** This endpoint is subject to change without notice.' + include Mixins::CommonMethods + argument :namespace_ids, [::Types::GlobalIDType[::Namespace]], required: true, description: 'List of Namespace IDs.' diff --git a/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/disable.rb b/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/disable.rb index 24b8622ae163f8fe3b19907d17a96577d49fd988..07ac6d7d9e8cb7b497b261dd9fae7a0c9186a05f 100644 --- a/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/disable.rb +++ b/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/disable.rb @@ -5,12 +5,11 @@ module Analytics module DevopsAdoption module EnabledNamespaces class Disable < BaseMutation - include Mixins::CommonMethods - graphql_name 'DisableDevopsAdoptionNamespace' - description '**BETA** This endpoint is subject to change without notice.' + include Mixins::CommonMethods + argument :id, [::Types::GlobalIDType[::Analytics::DevopsAdoption::EnabledNamespace]], required: true, description: 'One or many IDs of the enabled namespaces to disable.' diff --git a/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/enable.rb b/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/enable.rb index e4840805ae40bca05ce432cd4433b21cf42420ff..16dc53a8c9a5337b7ed7430e0af47050125bd766 100644 --- a/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/enable.rb +++ b/ee/app/graphql/mutations/analytics/devops_adoption/enabled_namespaces/enable.rb @@ -5,12 +5,11 @@ module Analytics module DevopsAdoption module EnabledNamespaces class Enable < BaseMutation - include Mixins::CommonMethods - graphql_name 'EnableDevopsAdoptionNamespace' - description '**BETA** This endpoint is subject to change without notice.' + include Mixins::CommonMethods + argument :namespace_id, ::Types::GlobalIDType[::Namespace], required: true, description: 'Namespace ID.' diff --git a/ee/app/graphql/mutations/app_sec/fuzzing/api/ci_configuration/create.rb b/ee/app/graphql/mutations/app_sec/fuzzing/api/ci_configuration/create.rb index bf0e04bf98892673371c07e3334ea34c737349c9..45ee781b21f6fcdc924a8eec1bb11736403d14c9 100644 --- a/ee/app/graphql/mutations/app_sec/fuzzing/api/ci_configuration/create.rb +++ b/ee/app/graphql/mutations/app_sec/fuzzing/api/ci_configuration/create.rb @@ -6,10 +6,10 @@ module Fuzzing module API module CiConfiguration class Create < BaseMutation - include FindsProject - graphql_name 'ApiFuzzingCiConfigurationCreate' + include FindsProject + argument :project_path, GraphQL::Types::ID, required: true, description: 'Full path of the project.' diff --git a/ee/app/graphql/mutations/app_sec/fuzzing/coverage/corpus/create.rb b/ee/app/graphql/mutations/app_sec/fuzzing/coverage/corpus/create.rb index ad5c8229c6d7b724e8f7260e386ece78a038000d..738ac343e3a9d6750ca35a1264a22eb76be1d772 100644 --- a/ee/app/graphql/mutations/app_sec/fuzzing/coverage/corpus/create.rb +++ b/ee/app/graphql/mutations/app_sec/fuzzing/coverage/corpus/create.rb @@ -4,10 +4,10 @@ module Mutations module AppSec::Fuzzing::Coverage module Corpus class Create < BaseMutation - include FindsProject - graphql_name 'CorpusCreate' + include FindsProject + authorize :create_coverage_fuzzing_corpus argument :package_id, Types::GlobalIDType[::Packages::Package], diff --git a/ee/app/graphql/mutations/boards/epic_boards/create.rb b/ee/app/graphql/mutations/boards/epic_boards/create.rb index 8816e6ed3457ec8e565b2e425f88dbebfc40fe49..e6fc0d64496724fa8eec71e991dbf9fe3cf49c00 100644 --- a/ee/app/graphql/mutations/boards/epic_boards/create.rb +++ b/ee/app/graphql/mutations/boards/epic_boards/create.rb @@ -4,12 +4,12 @@ module Mutations module Boards module EpicBoards class Create < ::Mutations::BaseMutation + graphql_name 'EpicBoardCreate' + include Mutations::ResolvesGroup include Mutations::Boards::CommonMutationArguments prepend Mutations::Boards::ScopedBoardMutation - graphql_name 'EpicBoardCreate' - authorize :admin_epic_board argument :group_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/boards/epic_boards/update.rb b/ee/app/graphql/mutations/boards/epic_boards/update.rb index 7ba3810b6170074fc7c3bba278833f2b70b81f01..6a7fe962ef16c7a9c8ff469050d7ef4dd454b604 100644 --- a/ee/app/graphql/mutations/boards/epic_boards/update.rb +++ b/ee/app/graphql/mutations/boards/epic_boards/update.rb @@ -4,11 +4,11 @@ module Mutations module Boards module EpicBoards class Update < ::Mutations::BaseMutation + graphql_name 'EpicBoardUpdate' + include Mutations::Boards::CommonMutationArguments prepend Mutations::Boards::ScopedBoardMutation - graphql_name 'EpicBoardUpdate' - authorize :admin_epic_board argument :id, diff --git a/ee/app/graphql/mutations/boards/epics/create.rb b/ee/app/graphql/mutations/boards/epics/create.rb index f5b32026b6a35a08c63b70f6ee72bfcebb7bf7bd..90e214478a5b056fac1d8978ad272e71fa9f3f18 100644 --- a/ee/app/graphql/mutations/boards/epics/create.rb +++ b/ee/app/graphql/mutations/boards/epics/create.rb @@ -4,10 +4,10 @@ module Mutations module Boards module Epics class Create < ::Mutations::BaseMutation - include Mutations::ResolvesGroup - graphql_name 'BoardEpicCreate' + include Mutations::ResolvesGroup + argument :group_path, GraphQL::Types::ID, required: true, description: 'Group the epic to create is in.' diff --git a/ee/app/graphql/mutations/dast/profiles/create.rb b/ee/app/graphql/mutations/dast/profiles/create.rb index 33f5b7219192752e24a90b125806f50651b176d0..2452d81b9536078d54c0f90613b2bfeaccaeed98 100644 --- a/ee/app/graphql/mutations/dast/profiles/create.rb +++ b/ee/app/graphql/mutations/dast/profiles/create.rb @@ -4,10 +4,10 @@ module Mutations module Dast module Profiles class Create < BaseMutation - include FindsProject - graphql_name 'DastProfileCreate' + include FindsProject + field :dast_profile, ::Types::Dast::ProfileType, null: true, description: 'Created profile.' diff --git a/ee/app/graphql/mutations/dast/profiles/run.rb b/ee/app/graphql/mutations/dast/profiles/run.rb index b4f451eef1b33f657e7e9cdcc81532c989bcb71e..fa034d77d3c5ab3561ed168fea2f711b0a7d74b1 100644 --- a/ee/app/graphql/mutations/dast/profiles/run.rb +++ b/ee/app/graphql/mutations/dast/profiles/run.rb @@ -4,10 +4,10 @@ module Mutations module Dast module Profiles class Run < BaseMutation - include FindsProject - graphql_name 'DastProfileRun' + include FindsProject + ProfileID = ::Types::GlobalIDType[::Dast::Profile] field :pipeline_url, GraphQL::Types::String, diff --git a/ee/app/graphql/mutations/dast/profiles/update.rb b/ee/app/graphql/mutations/dast/profiles/update.rb index e22d8cc9e910aa9a6294bfb1a0a1f1e619851ec1..628306f393490e2e3efd453f3a23b1d593159a82 100644 --- a/ee/app/graphql/mutations/dast/profiles/update.rb +++ b/ee/app/graphql/mutations/dast/profiles/update.rb @@ -4,10 +4,10 @@ module Mutations module Dast module Profiles class Update < BaseMutation - include FindsProject - graphql_name 'DastProfileUpdate' + include FindsProject + ProfileID = ::Types::GlobalIDType[::Dast::Profile] SiteProfileID = ::Types::GlobalIDType[::DastSiteProfile] ScannerProfileID = ::Types::GlobalIDType[::DastScannerProfile] diff --git a/ee/app/graphql/mutations/dast_on_demand_scans/create.rb b/ee/app/graphql/mutations/dast_on_demand_scans/create.rb index 73d891c284a91996ea466f87b4496c4f3e32e705..c8bd57ae1c85ba05ca0031af5a13be53bda77f0d 100644 --- a/ee/app/graphql/mutations/dast_on_demand_scans/create.rb +++ b/ee/app/graphql/mutations/dast_on_demand_scans/create.rb @@ -3,12 +3,12 @@ module Mutations module DastOnDemandScans class Create < BaseMutation + graphql_name 'DastOnDemandScanCreate' + include FindsProject InvalidGlobalID = Class.new(StandardError) - graphql_name 'DastOnDemandScanCreate' - field :pipeline_url, GraphQL::Types::String, null: true, description: 'URL of the pipeline that was created.' diff --git a/ee/app/graphql/mutations/dast_scanner_profiles/create.rb b/ee/app/graphql/mutations/dast_scanner_profiles/create.rb index 283490cf0d96fd517b07ee64d30aa3a52e22e94a..5d0b6370c15442d222c34d802916ea0305e13044 100644 --- a/ee/app/graphql/mutations/dast_scanner_profiles/create.rb +++ b/ee/app/graphql/mutations/dast_scanner_profiles/create.rb @@ -3,10 +3,10 @@ module Mutations module DastScannerProfiles class Create < BaseMutation - include FindsProject - graphql_name 'DastScannerProfileCreate' + include FindsProject + field :id, ::Types::GlobalIDType[::DastScannerProfile], null: true, description: 'ID of the scanner profile.' diff --git a/ee/app/graphql/mutations/dast_scanner_profiles/delete.rb b/ee/app/graphql/mutations/dast_scanner_profiles/delete.rb index ed7a2216e9a7c3ab27e5fb678594b6ba46e350ce..2ebe851fa97c29a39e1c73cdcf068b61801b9d11 100644 --- a/ee/app/graphql/mutations/dast_scanner_profiles/delete.rb +++ b/ee/app/graphql/mutations/dast_scanner_profiles/delete.rb @@ -3,10 +3,10 @@ module Mutations module DastScannerProfiles class Delete < BaseMutation - include FindsProject - graphql_name 'DastScannerProfileDelete' + include FindsProject + ScannerProfileID = ::Types::GlobalIDType[::DastScannerProfile] argument :full_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/dast_scanner_profiles/update.rb b/ee/app/graphql/mutations/dast_scanner_profiles/update.rb index 0f6f73965ce6e2952d873aa965f42fc271207810..acaac68c576c1349a1d25d9ea18ac33e2accac95 100644 --- a/ee/app/graphql/mutations/dast_scanner_profiles/update.rb +++ b/ee/app/graphql/mutations/dast_scanner_profiles/update.rb @@ -3,10 +3,10 @@ module Mutations module DastScannerProfiles class Update < BaseMutation - include FindsProject - graphql_name 'DastScannerProfileUpdate' + include FindsProject + ScannerProfileID = ::Types::GlobalIDType[::DastScannerProfile] field :id, ScannerProfileID, diff --git a/ee/app/graphql/mutations/dast_site_profiles/create.rb b/ee/app/graphql/mutations/dast_site_profiles/create.rb index acbf82e0293f55aeb2aefe88c3767f583c55eab4..cfd45bb686f52061eb93333242082b71ead56b74 100644 --- a/ee/app/graphql/mutations/dast_site_profiles/create.rb +++ b/ee/app/graphql/mutations/dast_site_profiles/create.rb @@ -3,11 +3,11 @@ module Mutations module DastSiteProfiles class Create < BaseMutation + graphql_name 'DastSiteProfileCreate' + include FindsProject include Mutations::AppSec::Dast::SiteProfiles::SharedArguments - graphql_name 'DastSiteProfileCreate' - field :id, SiteProfileID, null: true, description: 'ID of the site profile.' diff --git a/ee/app/graphql/mutations/dast_site_profiles/update.rb b/ee/app/graphql/mutations/dast_site_profiles/update.rb index 4b0524b0059b5a21989e0afb6567508b81e41971..07b9e8c8b20d9d34189b46b9993f9bbba715632c 100644 --- a/ee/app/graphql/mutations/dast_site_profiles/update.rb +++ b/ee/app/graphql/mutations/dast_site_profiles/update.rb @@ -3,11 +3,11 @@ module Mutations module DastSiteProfiles class Update < BaseMutation + graphql_name 'DastSiteProfileUpdate' + include FindsProject include Mutations::AppSec::Dast::SiteProfiles::SharedArguments - graphql_name 'DastSiteProfileUpdate' - field :id, SiteProfileID, null: true, description: 'ID of the site profile.' diff --git a/ee/app/graphql/mutations/dast_site_tokens/create.rb b/ee/app/graphql/mutations/dast_site_tokens/create.rb index a3d8f1287dd696362683c2e1dc06c00481b4bb8b..ff7435157546ae0db7d8f450e284c2e1e821c8ad 100644 --- a/ee/app/graphql/mutations/dast_site_tokens/create.rb +++ b/ee/app/graphql/mutations/dast_site_tokens/create.rb @@ -3,10 +3,10 @@ module Mutations module DastSiteTokens class Create < BaseMutation - include FindsProject - graphql_name 'DastSiteTokenCreate' + include FindsProject + field :id, ::Types::GlobalIDType[::DastSiteToken], null: true, description: 'ID of the site token.' diff --git a/ee/app/graphql/mutations/dast_site_validations/create.rb b/ee/app/graphql/mutations/dast_site_validations/create.rb index fdbed3a7689e9bde47513f0bcf188368300ce427..b9ef8b5917b136950f9fba427f1301487ad474a6 100644 --- a/ee/app/graphql/mutations/dast_site_validations/create.rb +++ b/ee/app/graphql/mutations/dast_site_validations/create.rb @@ -3,10 +3,10 @@ module Mutations module DastSiteValidations class Create < BaseMutation - include FindsProject - graphql_name 'DastSiteValidationCreate' + include FindsProject + field :id, ::Types::GlobalIDType[::DastSiteValidation], null: true, description: 'ID of the site validation.' diff --git a/ee/app/graphql/mutations/dast_site_validations/revoke.rb b/ee/app/graphql/mutations/dast_site_validations/revoke.rb index cc2ff732d88f13528c842298eceef813f5320d35..330d6764ebcc777e278658000a0906c52ddf4634 100644 --- a/ee/app/graphql/mutations/dast_site_validations/revoke.rb +++ b/ee/app/graphql/mutations/dast_site_validations/revoke.rb @@ -3,10 +3,10 @@ module Mutations module DastSiteValidations class Revoke < BaseMutation - include FindsProject - graphql_name 'DastSiteValidationRevoke' + include FindsProject + argument :full_path, GraphQL::Types::ID, required: true, description: 'Project the site validation belongs to.' diff --git a/ee/app/graphql/mutations/epics/add_issue.rb b/ee/app/graphql/mutations/epics/add_issue.rb index 4e11a7549b11732e4b53efa2f7a924c2ad0fe9e1..9e48523f2e8b9124eec688814b8877d054dd5c09 100644 --- a/ee/app/graphql/mutations/epics/add_issue.rb +++ b/ee/app/graphql/mutations/epics/add_issue.rb @@ -3,10 +3,10 @@ module Mutations module Epics class AddIssue < Base - include Mutations::ResolvesIssuable - graphql_name 'EpicAddIssue' + include Mutations::ResolvesIssuable + authorize :admin_epic argument :project_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/epics/create.rb b/ee/app/graphql/mutations/epics/create.rb index ce86a568dbfa4ad7c7e82d3f8a393d9de8c93a74..22e5216a803d28d25c727add3196229f92b8d3f8 100644 --- a/ee/app/graphql/mutations/epics/create.rb +++ b/ee/app/graphql/mutations/epics/create.rb @@ -3,11 +3,11 @@ module Mutations module Epics class Create < BaseMutation + graphql_name 'CreateEpic' + include Mutations::ResolvesGroup prepend Mutations::SharedEpicArguments - graphql_name 'CreateEpic' - authorize :create_epic field :epic, diff --git a/ee/app/graphql/mutations/epics/update.rb b/ee/app/graphql/mutations/epics/update.rb index feb56ec092c40ba4be07df10069b63ccda053a39..10344ba786ec2ba36f5fbf6592ef06b3d0bafa2a 100644 --- a/ee/app/graphql/mutations/epics/update.rb +++ b/ee/app/graphql/mutations/epics/update.rb @@ -3,10 +3,10 @@ module Mutations module Epics class Update < Base - prepend Mutations::SharedEpicArguments - graphql_name 'UpdateEpic' + prepend Mutations::SharedEpicArguments + argument :state_event, Types::EpicStateEventEnum, required: false, diff --git a/ee/app/graphql/mutations/incident_management/escalation_policy/create.rb b/ee/app/graphql/mutations/incident_management/escalation_policy/create.rb index 4437b3e51baad49e815b24a75b38a738b79ae1a5..53f808fd144e9698111322e6350de3e32fbbae27 100644 --- a/ee/app/graphql/mutations/incident_management/escalation_policy/create.rb +++ b/ee/app/graphql/mutations/incident_management/escalation_policy/create.rb @@ -4,10 +4,10 @@ module Mutations module IncidentManagement module EscalationPolicy class Create < Base - include ResolvesProject - graphql_name 'EscalationPolicyCreate' + include ResolvesProject + argument :project_path, GraphQL::Types::ID, required: true, description: 'Project to create the escalation policy for.' diff --git a/ee/app/graphql/mutations/incident_management/oncall_rotation/create.rb b/ee/app/graphql/mutations/incident_management/oncall_rotation/create.rb index 0abb4fa51deaa1ba339e5b08776df592d6ff05b4..cb69f9fa9d5609ad8105c45ec443984531a1ded6 100644 --- a/ee/app/graphql/mutations/incident_management/oncall_rotation/create.rb +++ b/ee/app/graphql/mutations/incident_management/oncall_rotation/create.rb @@ -4,10 +4,10 @@ module Mutations module IncidentManagement module OncallRotation class Create < Base - include ResolvesProject - graphql_name 'OncallRotationCreate' + include ResolvesProject + argument :project_path, GraphQL::Types::ID, required: true, description: 'Project to create the on-call schedule in.' diff --git a/ee/app/graphql/mutations/incident_management/oncall_rotation/update.rb b/ee/app/graphql/mutations/incident_management/oncall_rotation/update.rb index 7c2a9155f152ea669bb9358bafac8b73aece76ba..bf71230c940d16846cabaabd1432e1e416ae9b25 100644 --- a/ee/app/graphql/mutations/incident_management/oncall_rotation/update.rb +++ b/ee/app/graphql/mutations/incident_management/oncall_rotation/update.rb @@ -4,10 +4,10 @@ module Mutations module IncidentManagement module OncallRotation class Update < Base - include ResolvesProject - graphql_name 'OncallRotationUpdate' + include ResolvesProject + argument :id, ::Types::GlobalIDType[::IncidentManagement::OncallRotation], required: true, description: 'ID of the on-call schedule to create the on-call rotation in.' diff --git a/ee/app/graphql/mutations/incident_management/oncall_schedule/create.rb b/ee/app/graphql/mutations/incident_management/oncall_schedule/create.rb index bc676f645d7866c42491226af97fd5f965fc3db4..fcac9c0b2c71dec47460a2688a2c8aa4e13ad9a2 100644 --- a/ee/app/graphql/mutations/incident_management/oncall_schedule/create.rb +++ b/ee/app/graphql/mutations/incident_management/oncall_schedule/create.rb @@ -4,10 +4,10 @@ module Mutations module IncidentManagement module OncallSchedule class Create < OncallScheduleBase - include FindsProject - graphql_name 'OncallScheduleCreate' + include FindsProject + argument :project_path, GraphQL::Types::ID, required: true, description: 'Project to create the on-call schedule in.' diff --git a/ee/app/graphql/mutations/issues/promote_to_epic.rb b/ee/app/graphql/mutations/issues/promote_to_epic.rb index 90ee6652d587a97507a99b529b48525b0b21bdf4..e012016f599a00a3036afd6bd3bbfae4765c9888 100644 --- a/ee/app/graphql/mutations/issues/promote_to_epic.rb +++ b/ee/app/graphql/mutations/issues/promote_to_epic.rb @@ -3,10 +3,10 @@ module Mutations module Issues class PromoteToEpic < Base - include Mutations::ResolvesGroup - graphql_name 'PromoteToEpic' + include Mutations::ResolvesGroup + argument :group_path, GraphQL::Types::ID, required: false, description: 'Group the promoted epic will belong to.' diff --git a/ee/app/graphql/mutations/iterations/cadences/create.rb b/ee/app/graphql/mutations/iterations/cadences/create.rb index e548414ef2196008eb4950a47d53f21ca88bbada..dcb92e44151004364f05c5aa4d77004958958de5 100644 --- a/ee/app/graphql/mutations/iterations/cadences/create.rb +++ b/ee/app/graphql/mutations/iterations/cadences/create.rb @@ -4,10 +4,10 @@ module Mutations module Iterations module Cadences class Create < BaseMutation - include Mutations::ResolvesGroup - graphql_name 'IterationCadenceCreate' + include Mutations::ResolvesGroup + authorize :create_iteration_cadence argument :group_path, GraphQL::Types::ID, required: true, diff --git a/ee/app/graphql/mutations/iterations/create.rb b/ee/app/graphql/mutations/iterations/create.rb index 0bbcfa4d19a5fa362194cff870bee7c4acc9455f..ad888570211cea00eafcd0f3dd0d0d00c4500fa4 100644 --- a/ee/app/graphql/mutations/iterations/create.rb +++ b/ee/app/graphql/mutations/iterations/create.rb @@ -3,10 +3,10 @@ module Mutations module Iterations class Create < BaseMutation - include Mutations::ResolvesResourceParent - graphql_name 'iterationCreate' + include Mutations::ResolvesResourceParent + authorize :create_iteration field :iteration, diff --git a/ee/app/graphql/mutations/iterations/update.rb b/ee/app/graphql/mutations/iterations/update.rb index 0be37caf78338d2d4d5fcf5b2723d48439965b1b..fefa837eb26d5f54f86c1d89fb003378ba0986fa 100644 --- a/ee/app/graphql/mutations/iterations/update.rb +++ b/ee/app/graphql/mutations/iterations/update.rb @@ -3,11 +3,11 @@ module Mutations module Iterations class Update < BaseMutation + graphql_name 'UpdateIteration' + include Mutations::ResolvesGroup include ResolvesProject - graphql_name 'UpdateIteration' - authorize :admin_iteration field :iteration, diff --git a/ee/app/graphql/mutations/projects/set_locked.rb b/ee/app/graphql/mutations/projects/set_locked.rb index ee509f3060acb64af27c10e055ddea87a205c0b0..4c20d51aa56917630a78740bfc1dc721c5de0d80 100644 --- a/ee/app/graphql/mutations/projects/set_locked.rb +++ b/ee/app/graphql/mutations/projects/set_locked.rb @@ -3,10 +3,10 @@ module Mutations module Projects class SetLocked < BaseMutation - include FindsProject - graphql_name 'ProjectSetLocked' + include FindsProject + authorize :push_code argument :project_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/quality_management/test_cases/create.rb b/ee/app/graphql/mutations/quality_management/test_cases/create.rb index 10abfab1a727806c170dbb209ff28f826dcf12f1..ab58ff6cd476d927c73525efa89eebcb87d06e4f 100644 --- a/ee/app/graphql/mutations/quality_management/test_cases/create.rb +++ b/ee/app/graphql/mutations/quality_management/test_cases/create.rb @@ -4,10 +4,10 @@ module Mutations module QualityManagement module TestCases class Create < BaseMutation - include FindsProject - graphql_name 'CreateTestCase' + include FindsProject + authorize :create_test_case argument :title, GraphQL::Types::String, diff --git a/ee/app/graphql/mutations/requirements_management/create_requirement.rb b/ee/app/graphql/mutations/requirements_management/create_requirement.rb index a81c3d9d182964d234a3bc5c54b0d53efe6b0fc7..d954f14efaf00f9525812ab559e2d5018892ebff 100644 --- a/ee/app/graphql/mutations/requirements_management/create_requirement.rb +++ b/ee/app/graphql/mutations/requirements_management/create_requirement.rb @@ -3,10 +3,10 @@ module Mutations module RequirementsManagement class CreateRequirement < BaseRequirement - include FindsProject - graphql_name 'CreateRequirement' + include FindsProject + authorize :create_requirement def resolve(args) diff --git a/ee/app/graphql/mutations/requirements_management/export_requirements.rb b/ee/app/graphql/mutations/requirements_management/export_requirements.rb index 9af91dad8760abfae02027538dada300db021e21..780c93df49b185e053bc957bda91b0da17c1e9ee 100644 --- a/ee/app/graphql/mutations/requirements_management/export_requirements.rb +++ b/ee/app/graphql/mutations/requirements_management/export_requirements.rb @@ -3,11 +3,11 @@ module Mutations module RequirementsManagement class ExportRequirements < BaseMutation + graphql_name 'ExportRequirements' + include FindsProject include CommonRequirementArguments - graphql_name 'ExportRequirements' - authorize :export_requirements argument :project_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/security/training_provider_update.rb b/ee/app/graphql/mutations/security/training_provider_update.rb index a8bc8a5a6be957ea733980a714f6c11b87ecf142..3f235503e088a5679a436ea30cd49373e4ae0b0d 100644 --- a/ee/app/graphql/mutations/security/training_provider_update.rb +++ b/ee/app/graphql/mutations/security/training_provider_update.rb @@ -3,10 +3,10 @@ module Mutations module Security class TrainingProviderUpdate < BaseMutation - include FindsProject - graphql_name 'SecurityTrainingUpdate' + include FindsProject + authorize :access_security_and_compliance argument :project_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/security_policy/assign_security_policy_project.rb b/ee/app/graphql/mutations/security_policy/assign_security_policy_project.rb index b403ccac99e673bb9cc891df438d71ebdfb6c64c..c0f0c4c5c0c05fb3377ef9074c3832a752e03b6e 100644 --- a/ee/app/graphql/mutations/security_policy/assign_security_policy_project.rb +++ b/ee/app/graphql/mutations/security_policy/assign_security_policy_project.rb @@ -3,14 +3,13 @@ module Mutations module SecurityPolicy class AssignSecurityPolicyProject < BaseMutation - include FindsProject - graphql_name 'SecurityPolicyProjectAssign' - description 'Assigns the specified project(`security_policy_project_id`) as security policy project '\ 'for the given project(`project_path`). If the project already has a security policy project, '\ 'this reassigns the project\'s security policy project with the given `security_policy_project_id`' + include FindsProject + authorize :update_security_orchestration_policy_project argument :project_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/security_policy/commit_scan_execution_policy.rb b/ee/app/graphql/mutations/security_policy/commit_scan_execution_policy.rb index 469673bc1af641d45a95221ec3a4ce0d25938846..a7fe1ceb4d0c97391f3e793d9c78c4db20775dcf 100644 --- a/ee/app/graphql/mutations/security_policy/commit_scan_execution_policy.rb +++ b/ee/app/graphql/mutations/security_policy/commit_scan_execution_policy.rb @@ -3,12 +3,11 @@ module Mutations module SecurityPolicy class CommitScanExecutionPolicy < BaseMutation - include FindsProject - graphql_name 'ScanExecutionPolicyCommit' - description 'Commits the `policy_yaml` content to the assigned security policy project for the given project(`project_path`)' + include FindsProject + authorize :security_orchestration_policies argument :project_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/security_policy/create_security_policy_project.rb b/ee/app/graphql/mutations/security_policy/create_security_policy_project.rb index 7fa7e4ee5ca47c61c0720e08da1df420998265e1..273479afd7df71e5db9ade2fc36fa45ad3bdc0d5 100644 --- a/ee/app/graphql/mutations/security_policy/create_security_policy_project.rb +++ b/ee/app/graphql/mutations/security_policy/create_security_policy_project.rb @@ -3,12 +3,11 @@ module Mutations module SecurityPolicy class CreateSecurityPolicyProject < BaseMutation - include FindsProject - graphql_name 'SecurityPolicyProjectCreate' - description 'Creates and assigns a security policy project for the given project(`project_path`)' + include FindsProject + authorize :update_security_orchestration_policy_project argument :project_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/mutations/security_policy/unassign_security_policy_project.rb b/ee/app/graphql/mutations/security_policy/unassign_security_policy_project.rb index 663bbceeade8e7ab270dabf55128b01cb00aab49..33d826424865a8443b6555650dae8556e751b309 100644 --- a/ee/app/graphql/mutations/security_policy/unassign_security_policy_project.rb +++ b/ee/app/graphql/mutations/security_policy/unassign_security_policy_project.rb @@ -3,12 +3,11 @@ module Mutations module SecurityPolicy class UnassignSecurityPolicyProject < BaseMutation - include FindsProject - graphql_name 'SecurityPolicyProjectUnassign' - description 'Unassigns the security policy project for the given project(`project_path`).' + include FindsProject + authorize :update_security_orchestration_policy_project argument :project_path, GraphQL::Types::ID, diff --git a/ee/app/graphql/types/admin/cloud_licenses/current_license_type.rb b/ee/app/graphql/types/admin/cloud_licenses/current_license_type.rb index 15135c19fe17977ab161e561f1eecd4f6463866b..e26fd04db8c0752dde96927a45e79587ec6979d1 100644 --- a/ee/app/graphql/types/admin/cloud_licenses/current_license_type.rb +++ b/ee/app/graphql/types/admin/cloud_licenses/current_license_type.rb @@ -5,11 +5,11 @@ module Admin module CloudLicenses # rubocop: disable Graphql/AuthorizeTypes class CurrentLicenseType < BaseObject - include ::Types::Admin::CloudLicenses::LicenseType - graphql_name 'CurrentLicense' description 'Represents the current license' + include ::Types::Admin::CloudLicenses::LicenseType + field :last_sync, ::Types::TimeType, null: true, description: 'Date when the license was last synced.', method: :last_synced_at diff --git a/ee/app/graphql/types/admin/cloud_licenses/license_history_entry_type.rb b/ee/app/graphql/types/admin/cloud_licenses/license_history_entry_type.rb index 85e50de344ab311d348856288df9050b6a6c65af..2f14e0eea97f06190186cdde8b2a373ceac6c2c1 100644 --- a/ee/app/graphql/types/admin/cloud_licenses/license_history_entry_type.rb +++ b/ee/app/graphql/types/admin/cloud_licenses/license_history_entry_type.rb @@ -5,10 +5,10 @@ module Admin module CloudLicenses # rubocop: disable Graphql/AuthorizeTypes class LicenseHistoryEntryType < BaseObject - include ::Types::Admin::CloudLicenses::LicenseType - graphql_name 'LicenseHistoryEntry' description 'Represents an entry from the Cloud License history' + + include ::Types::Admin::CloudLicenses::LicenseType end end end diff --git a/ee/app/graphql/types/admin/cloud_licenses/subscription_future_entry_type.rb b/ee/app/graphql/types/admin/cloud_licenses/subscription_future_entry_type.rb index d37cd881bab4366cf86d044e44a774fb3f0f84ce..33a4f046bd20d355d5bcd175cc36d1e95f3413a5 100644 --- a/ee/app/graphql/types/admin/cloud_licenses/subscription_future_entry_type.rb +++ b/ee/app/graphql/types/admin/cloud_licenses/subscription_future_entry_type.rb @@ -5,6 +5,9 @@ module Admin module CloudLicenses # rubocop: disable Graphql/AuthorizeTypes class SubscriptionFutureEntryType < BaseObject + graphql_name 'SubscriptionFutureEntry' + description 'Represents an entry from the future subscriptions' + field :type, GraphQL::Types::String, null: false, description: 'Type of license the subscription will yield.' @@ -28,9 +31,6 @@ class SubscriptionFutureEntryType < BaseObject field :users_in_license_count, GraphQL::Types::Int, null: true, description: 'Number of paid user seats.' - - graphql_name 'SubscriptionFutureEntry' - description 'Represents an entry from the future subscriptions' end end end diff --git a/ee/app/graphql/types/boards/epic_list_type.rb b/ee/app/graphql/types/boards/epic_list_type.rb index 5f2706f6889553e41cfcf7f032060e1fdc9ff3dc..17ef450c03942d3d97c11806953d7dd3f9e66b74 100644 --- a/ee/app/graphql/types/boards/epic_list_type.rb +++ b/ee/app/graphql/types/boards/epic_list_type.rb @@ -4,11 +4,11 @@ module Types module Boards # rubocop: disable Graphql/AuthorizeTypes class EpicListType < BaseObject - include Gitlab::Utils::StrongMemoize - graphql_name 'EpicList' description 'Represents an epic board list' + include Gitlab::Utils::StrongMemoize + accepts ::Boards::EpicList alias_method :list, :object diff --git a/ee/app/graphql/types/dast_site_profile_type.rb b/ee/app/graphql/types/dast_site_profile_type.rb index 665f1a40d6c3750f036ab4252742b9127c357f21..5a148b294e82c999d1e230521ec39ef7edba57e2 100644 --- a/ee/app/graphql/types/dast_site_profile_type.rb +++ b/ee/app/graphql/types/dast_site_profile_type.rb @@ -2,11 +2,11 @@ module Types class DastSiteProfileType < BaseObject - REDACTED_REQUEST_HEADERS = '[Redacted]' - graphql_name 'DastSiteProfile' description 'Represents a DAST Site Profile' + REDACTED_REQUEST_HEADERS = '[Redacted]' + present_using ::Dast::SiteProfilePresenter authorize :read_on_demand_dast_scan diff --git a/ee/app/graphql/types/epic_type.rb b/ee/app/graphql/types/epic_type.rb index 4384aadb95c03e22480a08d5019987bc53635a8b..2f7bdf8990db0d4b588513e16a7872accb4f02c0 100644 --- a/ee/app/graphql/types/epic_type.rb +++ b/ee/app/graphql/types/epic_type.rb @@ -2,10 +2,11 @@ module Types class EpicType < BaseObject - include ::Gitlab::Graphql::Aggregations::Epics::Constants - graphql_name 'Epic' description 'Represents an epic' + + include ::Gitlab::Graphql::Aggregations::Epics::Constants + accepts ::Epic authorize :read_epic diff --git a/ee/app/graphql/types/geo/group_wiki_repository_registry_type.rb b/ee/app/graphql/types/geo/group_wiki_repository_registry_type.rb index c8abb04c4ca4d23392b21a82714804c4d79081f0..f96a7b3bd38bbef13cae99feb73e668a991fca9c 100644 --- a/ee/app/graphql/types/geo/group_wiki_repository_registry_type.rb +++ b/ee/app/graphql/types/geo/group_wiki_repository_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class GroupWikiRepositoryRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'GroupWikiRepositoryRegistry' description 'Represents the Geo sync and verification state of a group wiki repository' + include ::Types::Geo::RegistryType + field :group_wiki_repository_id, GraphQL::Types::ID, null: false, description: 'ID of the Group Wiki Repository.' end end diff --git a/ee/app/graphql/types/geo/lfs_object_registry_type.rb b/ee/app/graphql/types/geo/lfs_object_registry_type.rb index 623f9fbc0a52abef7d79fdc497022b4f2ab13a08..9dad2f2e4a050af2c8f43e68bfa92d2562bb3460 100644 --- a/ee/app/graphql/types/geo/lfs_object_registry_type.rb +++ b/ee/app/graphql/types/geo/lfs_object_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class LfsObjectRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'LfsObjectRegistry' description 'Represents the Geo sync and verification state of an LFS object' + include ::Types::Geo::RegistryType + field :lfs_object_id, GraphQL::Types::ID, null: false, description: 'ID of the LFS object.' end end diff --git a/ee/app/graphql/types/geo/merge_request_diff_registry_type.rb b/ee/app/graphql/types/geo/merge_request_diff_registry_type.rb index 45a487a88f8bd78156edbd78ae452e158bd610f4..73c1af762150f52a99a819b94fddc71f911c9dc1 100644 --- a/ee/app/graphql/types/geo/merge_request_diff_registry_type.rb +++ b/ee/app/graphql/types/geo/merge_request_diff_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class MergeRequestDiffRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'MergeRequestDiffRegistry' description 'Represents the Geo sync and verification state of a Merge Request diff' + include ::Types::Geo::RegistryType + field :merge_request_diff_id, GraphQL::Types::ID, null: false, description: 'ID of the Merge Request diff.' end end diff --git a/ee/app/graphql/types/geo/package_file_registry_type.rb b/ee/app/graphql/types/geo/package_file_registry_type.rb index d49a0002bd9b3de780ba3be76ea24f6bb891afe7..351d31f3a9aa5419ddf655e70a4ea2c37942bcd1 100644 --- a/ee/app/graphql/types/geo/package_file_registry_type.rb +++ b/ee/app/graphql/types/geo/package_file_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class PackageFileRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'PackageFileRegistry' description 'Represents the Geo sync and verification state of a package file' + include ::Types::Geo::RegistryType + field :package_file_id, GraphQL::Types::ID, null: false, description: 'ID of the PackageFile.' end end diff --git a/ee/app/graphql/types/geo/pages_deployment_registry_type.rb b/ee/app/graphql/types/geo/pages_deployment_registry_type.rb index 69a971fceebb8ac57706b6262ec0edb083278a8d..9723b498d37a2d5247846b5f6a0815ae3381f3ba 100644 --- a/ee/app/graphql/types/geo/pages_deployment_registry_type.rb +++ b/ee/app/graphql/types/geo/pages_deployment_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class PagesDeploymentRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'PagesDeploymentRegistry' description 'Represents the Geo replication and verification state of a pages_deployment' + include ::Types::Geo::RegistryType + field :pages_deployment_id, GraphQL::Types::ID, null: false, description: 'ID of the Pages Deployment.' end end diff --git a/ee/app/graphql/types/geo/pipeline_artifact_registry_type.rb b/ee/app/graphql/types/geo/pipeline_artifact_registry_type.rb index 3e25b872b58499a560b82b8d3a1bd09042e16532..d7dcd2f9c342903e367039e5f12d5dedf4779fdf 100644 --- a/ee/app/graphql/types/geo/pipeline_artifact_registry_type.rb +++ b/ee/app/graphql/types/geo/pipeline_artifact_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class PipelineArtifactRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'PipelineArtifactRegistry' description 'Represents the Geo sync and verification state of a pipeline artifact' + include ::Types::Geo::RegistryType + field :pipeline_artifact_id, GraphQL::Types::ID, null: false, description: 'ID of the pipeline artifact.' end end diff --git a/ee/app/graphql/types/geo/snippet_repository_registry_type.rb b/ee/app/graphql/types/geo/snippet_repository_registry_type.rb index 37cc440c0e13c1b66ae75ec8e0e7c5dbdabe5da3..f7a5aa88c8b82f2c767f578a8e0b91acacd6be2f 100644 --- a/ee/app/graphql/types/geo/snippet_repository_registry_type.rb +++ b/ee/app/graphql/types/geo/snippet_repository_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class SnippetRepositoryRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'SnippetRepositoryRegistry' description 'Represents the Geo sync and verification state of a snippet repository' + include ::Types::Geo::RegistryType + field :snippet_repository_id, GraphQL::Types::ID, null: false, description: 'ID of the Snippet Repository.' end end diff --git a/ee/app/graphql/types/geo/terraform_state_version_registry_type.rb b/ee/app/graphql/types/geo/terraform_state_version_registry_type.rb index f8ef40f81ab379fbf018d53ee5d70f42ef25ee68..a3b68d1e94693d577f9c5990b87700155501b8f3 100644 --- a/ee/app/graphql/types/geo/terraform_state_version_registry_type.rb +++ b/ee/app/graphql/types/geo/terraform_state_version_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class TerraformStateVersionRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'TerraformStateVersionRegistry' description 'Represents the Geo sync and verification state of a terraform state version' + include ::Types::Geo::RegistryType + field :terraform_state_version_id, GraphQL::Types::ID, null: false, description: 'ID of the terraform state version.' end end diff --git a/ee/app/graphql/types/geo/upload_registry_type.rb b/ee/app/graphql/types/geo/upload_registry_type.rb index a1eae8ae091987769078f16b3b051830a283b5cc..9467e2880084ea753dedac55dd7c4ddcb2c86a68 100644 --- a/ee/app/graphql/types/geo/upload_registry_type.rb +++ b/ee/app/graphql/types/geo/upload_registry_type.rb @@ -4,11 +4,11 @@ module Types module Geo # rubocop:disable Graphql/AuthorizeTypes because it is included class UploadRegistryType < BaseObject - include ::Types::Geo::RegistryType - graphql_name 'UploadRegistry' description 'Represents the Geo replication and verification state of an upload.' + include ::Types::Geo::RegistryType + field :file_id, GraphQL::Types::ID, null: false, description: 'ID of the Upload.' end end diff --git a/ee/app/graphql/types/incident_management/oncall_rotation_type.rb b/ee/app/graphql/types/incident_management/oncall_rotation_type.rb index 4c425aae781dfee18faf5661982da241545a918f..39c5bc6c796840e732cc5d56a81233a6f03394ac 100644 --- a/ee/app/graphql/types/incident_management/oncall_rotation_type.rb +++ b/ee/app/graphql/types/incident_management/oncall_rotation_type.rb @@ -3,11 +3,11 @@ module Types module IncidentManagement class OncallRotationType < BaseObject - MAX_SHIFTS_FOR_TIMEFRAME = 350 - graphql_name 'IncidentManagementOncallRotation' description 'Describes an incident management on-call rotation' + MAX_SHIFTS_FOR_TIMEFRAME = 350 + authorize :read_incident_management_oncall_schedule field :id, diff --git a/ee/app/graphql/types/scan_type.rb b/ee/app/graphql/types/scan_type.rb index 5b132ec6748a55382c716ce4bfcb7c6b5e9c1ad3..3aaba713f7c97ae2fe6ff0ffb0d7081df7134253 100644 --- a/ee/app/graphql/types/scan_type.rb +++ b/ee/app/graphql/types/scan_type.rb @@ -3,11 +3,11 @@ module Types # rubocop: disable Graphql/AuthorizeTypes class ScanType < BaseObject - present_using ::Security::ScanPresenter - graphql_name 'Scan' description 'Represents the security scan information' + present_using ::Security::ScanPresenter + authorize :read_scan field :name, GraphQL::Types::String, null: false, description: 'Name of the scan.' diff --git a/ee/app/graphql/types/vulnerability_detail_type.rb b/ee/app/graphql/types/vulnerability_detail_type.rb index 01d4a150768b8ca52c89bf2f28b31d34ffb07585..dffb5b3c7cdf99f9e107d0620b1e1fa86bf1c58b 100644 --- a/ee/app/graphql/types/vulnerability_detail_type.rb +++ b/ee/app/graphql/types/vulnerability_detail_type.rb @@ -2,10 +2,10 @@ module Types class VulnerabilityDetailType < BaseUnion - UnexpectedReportType = Class.new(StandardError) + graphql_name 'VulnerabilityDetail' description 'Represents a vulnerability detail field. The fields with data will depend on the vulnerability detail type' - graphql_name 'VulnerabilityDetail' + UnexpectedReportType = Class.new(StandardError) possible_types VulnerabilityDetails::UrlType, VulnerabilityDetails::IntType, diff --git a/ee/app/graphql/types/vulnerability_location_type.rb b/ee/app/graphql/types/vulnerability_location_type.rb index 153461e7d07859e8a319e455cd29eb2cf1b893e1..9392c9d930e72fd56cb567cd91b77ff703ef8ce9 100644 --- a/ee/app/graphql/types/vulnerability_location_type.rb +++ b/ee/app/graphql/types/vulnerability_location_type.rb @@ -2,11 +2,11 @@ module Types class VulnerabilityLocationType < BaseUnion - UnexpectedReportType = Class.new(StandardError) - graphql_name 'VulnerabilityLocation' description 'Represents a vulnerability location. The fields with data will depend on the vulnerability report type' + UnexpectedReportType = Class.new(StandardError) + possible_types VulnerabilityLocation::ClusterImageScanningType, VulnerabilityLocation::ContainerScanningType, VulnerabilityLocation::DependencyScanningType,