gitlab-org--gitlab-foss/app/graphql/types/mutation_type.rb

12 lines
213 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Types
class MutationType < BaseObject
include Gitlab::Graphql::MountMutation
graphql_name "Mutation"
2017-08-16 13:04:41 +00:00
mount_mutation Mutations::MergeRequests::SetWip
end
2017-08-16 13:04:41 +00:00
end