48 lines
1.5 KiB
Ruby
48 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
# rubocop:disable Graphql/ResolverType (inherited from ResolvesSnippets)
|
|
|
|
module Resolvers
|
|
class SnippetsResolver < BaseResolver
|
|
include ResolvesSnippets
|
|
|
|
ERROR_MESSAGE = 'Filtering by both an author and a project is not supported'
|
|
|
|
alias_method :user, :object
|
|
|
|
argument :author_id, ::Types::GlobalIDType[::User],
|
|
required: false,
|
|
description: 'The ID of an author.'
|
|
|
|
argument :project_id, ::Types::GlobalIDType[::Project],
|
|
required: false,
|
|
description: 'The ID of a project.'
|
|
|
|
argument :type, Types::Snippets::TypeEnum,
|
|
required: false,
|
|
description: 'The type of snippet.'
|
|
|
|
argument :explore,
|
|
GraphQL::BOOLEAN_TYPE,
|
|
required: false,
|
|
description: 'Explore personal snippets.'
|
|
|
|
def resolve(**args)
|
|
if args[:author_id].present? && args[:project_id].present?
|
|
raise Gitlab::Graphql::Errors::ArgumentError, ERROR_MESSAGE
|
|
end
|
|
|
|
super
|
|
end
|
|
|
|
private
|
|
|
|
def snippet_finder_params(args)
|
|
# TODO: remove the type arguments when the compatibility layer is removed
|
|
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
|
|
super
|
|
.merge(author: resolve_ids(args[:author_id], ::Types::GlobalIDType[::User]),
|
|
project: resolve_ids(args[:project_id], ::Types::GlobalIDType[::Project]),
|
|
explore: args[:explore])
|
|
end
|
|
end
|
|
end
|