All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.rdf.sparql.ast.eval.fts-complexWithQuery.rq Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
PREFIX fts: 
SELECT ?searchTerm ?label
WITH {
  SELECT ?res ?searchTerm WHERE {
     ?p ?searchTerm .
    SERVICE  {
      ?res fts:search ?searchTerm .
      ?res fts:endpoint "http://localhost:8983/solr/solrtest/select" .
      ?res fts:endpointType  "SOLR" .
      ?res fts:params "fl=uri" .
      ?res fts:searchField "uri" .
      ?res fts:searchResultType "URI" .
    }
    hint:Prior hint:runLast "true" .
  }
} AS %sub 
WHERE {
  INCLUDE %sub
  ?res rdfs:label ?label
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy