class GraphQL::Relay::Mutation::Result

def method_missing(name, *args, &block)

def method_missing(name, *args, &block)
  if result.key?(name)
    result[name]
  else
    super
  end
end