query-605d9d1749ee66206a4c56d6cc62d269

rq turtle/ttl

Puentes en EspañaAñadimos el patrón país (P17) España Q29 Consulta por tipo (P31) Q12280 que es puente ... pero también hay tipos

Use at

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 
WHERE 
{
  ?cosa wdt:P31 wd:Q12280 .
  ?cosa wdt:P17 wd:Q29

  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; v1("?cosa"):::projected c4(["wd:Q29"]):::iri c6(["bd:serviceParam"]):::iri c8(["es,en"]):::literal c2(["wd:Q12280"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P17"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end