summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/concerns/mutations/finds_by_gid.rb
blob: 157f87a413d1b2af617e57f43216d01db0190eb0 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Mutations
  module FindsByGid
    def find_object(id:)
      GitlabSchema.find_by_gid(id)
    end
  end
end