Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base.rb « todos « mutations « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a94c5d1e6d3ee349e3cb87e2d9811f86ebe9073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Mutations
  module Todos
    class Base < ::Mutations::BaseMutation
      private

      def find_object(id:)
        GitlabSchema.find_by_gid(id)
      end
    end
  end
end