query-fae1f12f06a5faaf821617c5e1c4eb02
title:Contributi pubblicati in Nuovi studi fanesi, con rispettivi autori SELECT ?item ?itemLabel ?autore ?autoreLabel WHERE { ?item wdt:P1433 wd:Q109613247 . ?item wdt:P50 ?autore . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?itemLabel
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:Contributi pubblicati in Nuovi studi fanesi, con rispettivi autori
SELECT ?item ?itemLabel ?autore ?autoreLabel
WHERE {
?item wdt:P1433 wd:Q109613247 .
?item wdt:P50 ?autore .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?autore"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
c5(["bd:serviceParam"]):::iri
c2(["wd:Q109613247"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P1433"--> c2
v2 --"wdt:P50"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end