Advertisement
Guest User

SPARQL Query 1 from Berlin Benchmark

a guest
Apr 24th, 2017
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.71 KB | None | 0 0
  1. PREFIX bsbm: <http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/>
  2. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  3. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  4. SELECT DISTINCT ?product ?label
  5.     WHERE {
  6.         ?product rdfs:label ?label .
  7.         ?product rdf:type <http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/instances/ProductType2> .
  8.         ?product bsbm:productFeature <http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/instances/ProductFeature12> .
  9.         ?product bsbm:productFeature <http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/instances/ProductFeature20> .
  10.         ?product bsbm:productPropertyNumeric1 ?value1 .
  11.         FILTER (?value1 > 348)
  12.         }
  13. ORDER BY ?label
  14. LIMIT 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement