ontology_search.rb revision 4ce82d1bdbcc86061694e79d198d32aced4b440e
require 'json'
end
return JSON.generate(keywordList)
end
Ontology.select(:name).where("name LIKE :prefix", prefix: "#{prefix}%").group("name").limit(50).each do |ontology|
end
Entity.select(:name).where("name LIKE :prefix", prefix: "#{prefix}%").group("name").limit(50).each do |symbol|
end
textList.each do |text|
end
return keywordList
end
end
end