query-aecc842a2062ca3d2a683742324ca55f
title:Autori dei contributi pubblicati nelle riviste e nei libri censiti SELECT ?autore ?autoreLabel ?item ?itemLabel ?opera ?operaLabel WHERE { ?opera wdt:P5008 wd:Q109613116 . ?item wdt:P1433 ?opera . ?item wdt:P50 ?autore . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
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#>
#title:Autori dei contributi pubblicati nelle riviste e nei libri censiti
SELECT ?autore ?autoreLabel ?item ?itemLabel ?opera ?operaLabel
WHERE {
?opera wdt:P5008 wd:Q109613116 .
?item wdt:P1433 ?opera .
?item wdt:P50 ?autore .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?autore"):::projected
v2("?item"):::projected
v1("?opera"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q109613116"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P5008"--> c2
v2 --"wdt:P1433"--> v1
v2 --"wdt:P50"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end