query-f519a940556698f85522597c6f3c7521
Elenca in ordine alfabetico i musei che possiedono dipinti del XVII e XVIII secolo che hanno per soggetto Betsabea al bagno SELECT DISTINCT ?item ?itemLabel ?data_creazione ?istituto ?istitutoLabel WHERE { ?item wdt:P31/wdt:P279* wd:Q3305213 . # item è un dipinto o una sottoclasse ?item wdt:P571 ?data_creazione . # definisce la variabile data di creazione ?item wdt:P921 wd:Q69805487 . # definisce l'argomento principale dell'item ?item wdt:P276 ?istituto . # definisce la variabile Istituto FILTER(?data_creazione >= "1600-01-01"^^xsd:dateTime && ?data_creazione < "1801-01-01"^^xsd:dateTime) SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en". } } ORDER BY ?istitutoLabel
Use at
- https://query.wikidata.org/sparql
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#>
# Elenca in ordine alfabetico i musei che possiedono dipinti del XVII e XVIII secolo che hanno per soggetto Betsabea al bagno
SELECT DISTINCT ?item ?itemLabel ?data_creazione ?istituto ?istitutoLabel
WHERE {
?item wdt:P31/wdt:P279* wd:Q3305213 . # item è un dipinto o una sottoclasse
?item wdt:P571 ?data_creazione . # definisce la variabile data di creazione
?item wdt:P921 wd:Q69805487 . # definisce l'argomento principale dell'item
?item wdt:P276 ?istituto . # definisce la variabile Istituto
FILTER(?data_creazione >= "1600-01-01"^^xsd:date && ?data_creazione < "1801-01-01"^^xsd:dat)
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en". }
}
ORDER BY ?istitutoLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?data_creazione"):::projected
v4("?istituto"):::projected
v1("?istitutoLabel"):::projected
v3("?item"):::projected
a1((" "))
c8(["wd:Q69805487"]):::iri
c5(["wd:Q3305213"]):::iri
c11(["bd:serviceParam"]):::iri
c13(["it,en"]):::literal
f0[["?data_creazione >= '1600-01-01^^xsd:date'?data_creazione < s1801-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]]
f0 --> v2
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
v3 --"wdt:P571"--> v2
v3 --"wdt:P921"--> c8
v3 --"wdt:P276"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end