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

com.bigdata.rdf.sparql.ast.eval.rto.BSBM-Q3.rq Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
# BSBM Q3 on pc100.

PREFIX bsbm-inst: 
PREFIX bsbm: 
PREFIX rdfs: 
PREFIX rdf: 

SELECT (COUNT(*) as ?count)
#SELECT ?product ?label
WHERE {

  # Control all RTO parameters for repeatable behavior.
  hint:Query hint:optimizer "Runtime".
  hint:Query hint:RTO-sampleType "DENSE".
  hint:Query hint:RTO-limit "100".
  hint:Query hint:RTO-nedges "1".

    ?product rdfs:label ?label .
    ?product a  .
   ?product bsbm:productFeature  .
   ?product bsbm:productPropertyNumeric1 ?p1 .
   FILTER ( ?p1 > 147 ) 
   ?product bsbm:productPropertyNumeric3 ?p3 .
   FILTER (?p3 < 91 )
    OPTIONAL { 
        ?product bsbm:productFeature  .
        ?product rdfs:label ?testVar }
    FILTER (!bound(?testVar)) 
}
ORDER BY ?label
LIMIT 10




© 2015 - 2024 Weber Informatics LLC | Privacy Policy