SPARQL Query: All instantiations of Mirage and Organic Honey in a time range (2000-2010)

Note: Try this query as a TIMELINE visualization as well from the menu on the left-hand side in this window.



Query:

To run this query yourself, copy and paste the code below in the gray box into the Wikidata Query Service. Click here for a tutorial and notes on how to modify this query or write your own!

 

Query source code:

#defaultView:Table
SELECT ?artwork ?artworkLabel ?inception ?start_time ?location ?locationLabel ?image 
WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?artwork wdt:P170 wd:Q453808.
  ?artwork wdt:P1343 wd:Q91439317.
  OPTIONAL { ?artwork wdt:P571 ?inception. }
  OPTIONAL { ?artwork wdt:P580 ?start_time. }
  ?artwork wdt:P276 ?location.
  OPTIONAL { ?location wdt:P18 ?image.}
  FILTER ((?inception > "2000-01-01"^^xsd:dateTime || ?start_time > "2000-01-01"^^xsd:dateTime) && (?inception < "2010-12-31"^^xsd:dateTime || ?start_time < "2010-12-31"^^xsd:dateTime)).
}
LIMIT 100