query-97be050d46256de797b2aa72295b3492

rq turtle/ttl

Opere di autori nati negli Stati Uniti nella prima metà dell’800 e pubblicate in Germania SELECT DISTINCT ?opera ?operaLabel ?autore ?autoreLabel ?dataNasc ?luogoPubbLabel WHERE { ?opera wdt:P31 wd:Q3331189 . ?opera wdt:P291 ?luogoPubb . ?luogoPubb wdt:P17 wd:Q183 . ?opera wdt:P50 ?autore . ?autore wdt:P19 ?luogoNasc . ?luogoNasc wdt:P17 wd:Q30 . ?autore wdt:P569 ?dataNasc . FILTER ((?dataNasc >= "1799-12-31T00:00:00Z"^^xsd:dateTime) && (?dataNasc < "1851-01-01T00:00:00Z"^^xsd:dateTime)) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en,de". } }

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#>
#Opere di autori nati negli Stati Uniti nella prima metà dell’800 e pubblicate in Germania
SELECT DISTINCT ?opera ?operaLabel ?autore ?autoreLabel ?dataNasc ?luogoPubbLabel
WHERE
{
  ?opera wdt:P31 wd:Q3331189 .
  ?opera wdt:P291 ?luogoPubb .
  ?luogoPubb wdt:P17 wd:Q183 .
  ?opera wdt:P50 ?autore .
  ?autore wdt:P19 ?luogoNasc .
  ?luogoNasc wdt:P17 wd:Q30 .
  ?autore wdt:P569 ?dataNasc .
  FILTER ((?dataNasc >= "1799-12-31T00:00:00Z"^^xsd:dateTime) && (?dataNasc < "1851-01-01T00:00:00Z"^^xsd:dateTime))
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en,de". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?autore"):::projected v1("?dataNasc"):::projected v5("?luogoNasc") v3("?luogoPubb") v2("?opera"):::projected c4(["wd:Q3331189"]):::iri c10(["wd:Q30"]):::iri c15(["#91;AUTO_LANGUAGE#93;,it,en,de"]):::literal c13(["bd:serviceParam"]):::iri c7(["wd:Q183"]):::iri f0[["?dataNasc >= '1799-12-31T00:00:00Z^^xsd:dateTime'?dataNasc < '1851-01-01T00:00:00Z^^xsd:dateTime'"]] f0 --> v1 v2 --"wdt:P31"--> c4 v2 --"wdt:P291"--> v3 v3 --"wdt:P17"--> c7 v2 --"wdt:P50"--> v4 v4 --"wdt:P19"--> v5 v5 --"wdt:P17"--> c10 v4 --"wdt:P569"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c13 --"wikibase:language"--> c15 end