@prefix : . @prefix rdfs: . @prefix xsd: . # # configure the SearchIndexer # # Individuals with these types will be excluded from the search index :searchExcluder_typeExcluder a , ; :excludes "http://www.w3.org/2002/07/owl#AnnotationProperty" , "http://www.w3.org/2002/07/owl#DatatypeProperty" , "http://www.w3.org/2002/07/owl#ObjectProperty" . # Individuals with types from these namespaces will be excluded from the search index. :searchExcluder_namespaceExcluder a , ; :excludes "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#" , "http://vitro.mannlib.cornell.edu/ns/vitro/public#" , "http://vitro.mannlib.cornell.edu/ns/bnode#" , "http://www.w3.org/2002/07/owl#" . # Individuals with URIs in these namespaces will be excluded from the search index. :searchExcluder_typeNamespaceExcluder a , ; :excludes "http://vitro.mannlib.cornell.edu/ns/vitro/role#public" . :searchExcluder_vitroExcluder a , . :searchExcluder_syncingTypeExcluder a , . # ------------------------------------ :uriFinder_forDataProperties a , . :uriFinder_forObjectProperties a , . :uriFinder_forTypeStatements a , . :uriFinder_forClassGroupChange a , . # ------------------------------------ :documentModifier_AllNames a , ; rdfs:label "All labels are added to name fields." ; :hasTargetField "nameRaw" ; :hasSelectQuery """ PREFIX rdfs: SELECT ?label WHERE { ?uri rdfs:label ?label . } """ . :documentModifier_NameFieldBooster a , ; :hasTargetField "nameRaw" ; :hasTargetField "nameLowercase" ; :hasTargetField "nameUnstemmed" ; :hasTargetField "nameStemmed" ; :hasBoost "1.2"^^xsd:float . :documentModifier_thumbnailImageUrl a , .