debian-mirror-gitlab/app/graphql/types/mutation_type.rb
2018-11-18 11:00:15 +05:30

12 lines
213 B
Ruby

# frozen_string_literal: true
module Types
class MutationType < BaseObject
include Gitlab::Graphql::MountMutation
graphql_name "Mutation"
mount_mutation Mutations::MergeRequests::SetWip
end
end