debian-mirror-gitlab/app/graphql/types/mutation_type.rb

12 lines
213 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-11-08 19:23:39 +05:30
module Types
class MutationType < BaseObject
2018-11-18 11:00:15 +05:30
include Gitlab::Graphql::MountMutation
2018-11-08 19:23:39 +05:30
graphql_name "Mutation"
2018-11-18 11:00:15 +05:30
mount_mutation Mutations::MergeRequests::SetWip
2018-11-08 19:23:39 +05:30
end
end