query-85faa1029f1721ee3be9e69236abc4af
Puentes de todos los tipos en EspañaBúsqueda recursos por subclases
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 ?tipo ?tipoLabel
WHERE
{
?cosa wdt:P31*/wdt:P279* wd:Q12280 .
?cosa wdt:P17 wd:Q29 .
?cosa wdt:P31 ?tipo
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("?cosa"):::projected
v2("?tipo"):::projected
a1((" "))
c5(["wd:Q29"]):::iri
c7(["bd:serviceParam"]):::iri
c3(["wd:Q12280"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P17"--> c5
v1 --"wdt:P31"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end