debian-mirror-gitlab/app/graphql/resolvers/boards_resolver.rb
2022-07-16 19:58:13 +02:00

33 lines
895 B
Ruby

# frozen_string_literal: true
module Resolvers
class BoardsResolver < BaseResolver
type Types::BoardType, null: true
argument :id, ::Types::GlobalIDType[::Board],
required: false,
description: 'Find a board by its ID.'
def resolve(id: nil)
# The project or group could have been loaded in batch by `BatchLoader`.
# At this point we need the `id` of the project/group to query for boards, so
# make sure it's loaded and not `nil` before continuing.
parent = object.respond_to?(:sync) ? object.sync : object
return Board.none unless parent
::Boards::BoardsFinder.new(parent, context[:current_user], board_id: extract_board_id(id)).execute
rescue ActiveRecord::RecordNotFound
Board.none
end
private
def extract_board_id(id)
return unless id.present?
id.model_id
end
end
end