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

14 lines
302 B
Ruby

# frozen_string_literal: true
module Mutations
class BaseMutation < GraphQL::Schema::RelayClassicMutation
field :errors, [GraphQL::STRING_TYPE],
null: false,
description: "Reasons why the mutation failed."
def current_user
context[:current_user]
end
end
end