debian-mirror-gitlab/app/graphql/resolvers/notes/synthetic_note_resolver.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
933 B
Ruby
Raw Normal View History

2023-04-23 21:23:45 +05:30
# frozen_string_literal: true
module Resolvers
module Notes
class SyntheticNoteResolver < BaseResolver
include Gitlab::Graphql::Authorize::AuthorizeResource
authorize :read_note
type Types::Notes::NoteType, null: true
argument :sha, GraphQL::Types::String,
required: true,
description: 'Global ID of the note.'
argument :noteable_id, ::Types::GlobalIDType[::Noteable],
required: true,
description: 'Global ID of the resource to search synthetic note on.'
def resolve(noteable_id:, sha:)
noteable = authorized_find!(id: noteable_id)
synthetic_notes = ResourceEvents::MergeIntoNotesService.new(
noteable, current_user, paginated_notes: nil
).execute
synthetic_notes.find { |note| note.discussion_id == sha }
end
def find_object(id:)
GitlabSchema.find_by_gid(id)
end
end
end
end