Skip to content

Commit

Permalink
Added agent index sparql
Browse files Browse the repository at this point in the history
  • Loading branch information
sahalali committed Oct 14, 2024
1 parent 5aec5c8 commit a93231c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/sparql/index/agent.index.sparql
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
PREFIX :<http://www.ontotext.com/connectors/lucene#>
PREFIX inst:<http://www.ontotext.com/connectors/lucene/instance#>
INSERT DATA {
inst:agent-index :createConnector '''
{
"fields": [
{
"fieldName": "name",
"propertyChain": [
"http://www.w3.org/2000/01/rdf-schema#label"
],
"indexed": true,
"stored": true,
"analyzed": true,
"multivalued": true,
"ignoreInvalidValues": false,
"facet": true
}
],
"languages": [],
"types": [
"http://dbpedia.org/ontology/Agent"
],
"readonly": false,
"detectFields": false,
"importGraph": false,
"skipInitialIndexing": false,
"boostProperties": [],
"stripMarkup": false
}
''' .
}

0 comments on commit a93231c

Please sign in to comment.