query-2b7ae47059d50b931a998090e82e484d
Arquitectos de los puentes en EspaƱaAƱadimos P84 (arquitecto)
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#>
SELECT ?cosa ?cosaLabel ?arquitecto ?arquitectoLabel
WHERE
{
?cosa wdt:P31 wd:Q12280 .
?cosa wdt:P17 wd:Q29 .
?cosa wdt:P84 ?arquitecto
SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?arquitecto"):::projected
v1("?cosa"):::projected
c4(["wd:Q29"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["es,en"]):::literal
c2(["wd:Q12280"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P17"--> c4
v1 --"wdt:P84"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end