query-1a4d0b544856c63683a02bddca3dfdd8

rq turtle/ttl

TODO

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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#>
#Cronologia delle opere di Tiziano Vecellio, che abbiano data tra il 1500 e il 1600, con eventuale immagine
#defaultView:Timeline
SELECT DISTINCT ?item ?itemLabel ?data_creazione ?immagine WHERE {
  ?item wdt:P170 wd:Q47551.
  ?item wdt:P571 ?data_creazione .
    OPTIONAL { ?item wdt:P18 ?immagine. }
  FILTER(?data_creazione >= "1500-01-01"^^xsd:date && ?data_creazione < "1600-01-01"^^xsd:dat)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?data_creazione"):::projected v3("?immagine"):::projected v2("?item"):::projected c4(["wd:Q47551"]):::iri c10(["#91;AUTO_LANGUAGE#93;,it,en"]):::literal c8(["bd:serviceParam"]):::iri f0[["?data_creazione >= '1500-01-01^^xsd:date'?data_creazione < s1600-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f0 --> v1 v2 --"wdt:P170"--> c4 v2 --"wdt:P571"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end