# frozen_string_literal: truemoduleMutationsmoduleDesignManagementclassBase<::Mutations::BaseMutationincludeGitlab::Graphql::Authorize::AuthorizeResourceincludeMutations::ResolvesProjectargument:project_path,GraphQL::ID_TYPE,required: true,description: "The project where the issue is to upload designs for"argument:iid,GraphQL::ID_TYPE,required: true,description: "The iid of the issue to modify designs for"field:designs,[Types::DesignManagement::DesignType],null: false,description: "The designs that were updated by the mutation"privatedeffind_object(project_path:,iid:)project=resolve_project(full_path: project_path)Resolvers::IssuesResolver.single.new(object: project,context: context).resolve(iid: iid)endendendend