debian-mirror-gitlab/app/graphql/mutations/todos/base.rb
2022-07-17 14:43:12 +02:00

13 lines
213 B
Ruby

# 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