query-e31237187f312e6d43bfabb4475ad98c

rq turtle/ttl

A timeline of paintings in the Prado by year of creation

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#A timeline of paintings in the Prado by year of creation
#defaultView:Timeline
SELECT ?inception ?itemLabel ?image ?creatorLabel WHERE {
  ?item wdt:P195 wd:Q160112 .
  ?item wdt:P31 wd:Q3305213 .
  ?item wdt:P571 ?inception .
  OPTIONAL { ?item wdt:P18 ?image } .
  OPTIONAL { ?item wdt:P170 ?creator } .
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" .
  }
  } 
LIMIT 10000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?creator") v3("?image"):::projected v2("?inception"):::projected v1("?item") c4(["wd:Q3305213"]):::iri c9(["bd:serviceParam"]):::iri c11(["en"]):::literal c2(["wd:Q160112"]):::iri v1 --"wdt:P195"--> c2 v1 --"wdt:P31"--> c4 v1 --"wdt:P571"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P170".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end