query-df16855f9287b36e946724ca00ebe7b5

rq turtle/ttl

TimelinesA timeline of paintings entering the Prado

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#A timeline of paintings entering the Prado
#defaultView:Timeline
SELECT ?starttime ?itemLabel ?image ?creatorLabel WHERE {
  ?item p:P195 ?collection .
  ?collection ps:P195 wd:Q160112 .
  ?collection pq:P580 ?starttime .
  ?item wdt:P31 wd:Q3305213 .
  OPTIONAL { ?item wdt:P18 ?image } .
  OPTIONAL { ?item wdt:P170 ?creator } .
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" .
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?collection") v5("?creator") v4("?image"):::projected v1("?item") v3("?starttime"):::projected c6(["wd:Q3305213"]):::iri c10(["bd:serviceParam"]):::iri c12(["en"]):::literal c3(["wd:Q160112"]):::iri v1 --"p:P195"--> v2 v2 --"p:statement/P195"--> c3 v2 --"p:qualifier/P580"--> v3 v1 --"p:direct/P31"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."p:direct/P18".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."p:direct/P170".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end