ontology.rb revision 773e8045866bdb28eaa01213dc082552952ff0ad
# Ontohub Library Includes
# Ontology Model Includes
scope :search, ->(query) { where "iri #{connection.ilike_operator} :term OR name #{connection.ilike_operator} :term", :term => "%" << query << "%" }
def to_s
name? ? name : iri
end
# title for links
def title
name? ? iri : nil
end
def symbols
entities
end
def symbols_count
entities_count
end
end