query-822e0cbbacce39a4b2906696a538c34d
TODO
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:Provenienza autori bollettino
#defaultView:Map
SELECT Distinct ?autore ?autoreLabel ?placebLabel ?coord
WHERE
{
?article wdt:P1433 wd:Q27715489; wdt:P50 ?autore.
?autore wdt:P19 ?placeb.
?placeb wdt:P625 ?coord.
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;
v1("?article")
v2("?autore"):::projected
v4("?coord"):::projected
v3("?placeb")
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q27715489"]):::iri
v1 --"wdt:P1433"--> c2
v1 --"wdt:P50"--> v2
v2 --"wdt:P19"--> v3
v3 --"wdt:P625"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end