debian-mirror-gitlab/lib/gitlab/graphql/mount_mutation.rb
2019-09-30 21:07:59 +05:30

20 lines
499 B
Ruby

# frozen_string_literal: true
module Gitlab
module Graphql
module MountMutation
extend ActiveSupport::Concern
class_methods do
def mount_mutation(mutation_class, **custom_kwargs)
# Using an underscored field name symbol will make `graphql-ruby`
# standardize the field name
field mutation_class.graphql_name.underscore.to_sym,
mutation: mutation_class,
**custom_kwargs
end
end
end
end
end