summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/release_asset_links/update.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/release_asset_links/update.rb')
-rw-r--r--app/graphql/mutations/release_asset_links/update.rb65
1 files changed, 65 insertions, 0 deletions
diff --git a/app/graphql/mutations/release_asset_links/update.rb b/app/graphql/mutations/release_asset_links/update.rb
new file mode 100644
index 00000000000..1d9460bde78
--- /dev/null
+++ b/app/graphql/mutations/release_asset_links/update.rb
@@ -0,0 +1,65 @@
+# frozen_string_literal: true
+
+module Mutations
+ module ReleaseAssetLinks
+ class Update < BaseMutation
+ graphql_name 'ReleaseAssetLinkUpdate'
+
+ authorize :update_release
+
+ ReleaseAssetLinkID = ::Types::GlobalIDType[::Releases::Link]
+
+ argument :id, ReleaseAssetLinkID,
+ required: true,
+ description: 'ID of the release asset link to update.'
+
+ argument :name, GraphQL::STRING_TYPE,
+ required: false,
+ description: 'Name of the asset link.'
+
+ argument :url, GraphQL::STRING_TYPE,
+ required: false,
+ description: 'URL of the asset link.'
+
+ argument :direct_asset_path, GraphQL::STRING_TYPE,
+ required: false, as: :filepath,
+ description: 'Relative path for a direct asset link.'
+
+ argument :link_type, Types::ReleaseAssetLinkTypeEnum,
+ required: false,
+ description: 'The type of the asset link.'
+
+ field :link,
+ Types::ReleaseAssetLinkType,
+ null: true,
+ description: 'The asset link after mutation.'
+
+ def ready?(**args)
+ if args.key?(:link_type) && args[:link_type].nil?
+ raise Gitlab::Graphql::Errors::ArgumentError,
+ 'if the linkType argument is provided, it cannot be null'
+ end
+
+ super
+ end
+
+ def resolve(id:, **link_attrs)
+ link = authorized_find!(id)
+
+ unless link.update(link_attrs)
+ return { link: nil, errors: link.errors.full_messages }
+ end
+
+ { link: link, errors: [] }
+ end
+
+ def find_object(id)
+ # TODO: remove this line when the compatibility layer is removed
+ # See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
+ id = ReleaseAssetLinkID.coerce_isolated_input(id)
+
+ GitlabSchema.find_by_gid(id)
+ end
+ end
+ end
+end