query-9e7a28c67381a0287d70243c40250d7e

rq turtle/ttl

Fortifications in the Canary Islands

SELECT ?item ?itemLabel ?fortificationLabel ?locationLabel ?provinceLabel WHERE { ?location wdt:P31 wd:Q2074737 . ?location wdt:P131 ?province .

?fortification wdt:P31/wdt:P279 wd:Q57821 .

?item wdt:P31 ?fortification . ?item wdt:P131 ?location .

VALUES ?province { wd:Q95080 wd:Q99976 }

SERVICE wikibase:label { bd:serviceParam wikibase:language "es" }
}

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#>
# Fortifications in the Canary Islands

SELECT ?item ?itemLabel ?fortificationLabel ?locationLabel ?provinceLabel WHERE {
  ?location wdt:P31 wd:Q2074737 .
  ?location wdt:P131 ?province .

  ?fortification wdt:P31*/wdt:P279* wd:Q57821 .

  ?item wdt:P31 ?fortification .
  ?item wdt:P131 ?location .

  VALUES ?province { wd:Q95080 wd:Q99976 }

  SERVICE wikibase:label { bd:serviceParam wikibase:language "es" }  
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?fortification") v4("?item"):::projected v1("?location") v5("?province") a1((" ")) c2(["wd:Q2074737"]):::iri c7(["bd:serviceParam"]):::iri c5(["wd:Q57821"]):::iri c9(["es"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P131"--> v5 v3 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 v4 --"wdt:P31"--> v3 v4 --"wdt:P131"--> v1 bind0[/VALUES ?province/] bind0-->v5 bind00(["wd:Q95080"]) bind00 --> bind0 bind01(["wd:Q99976"]) bind01 --> bind0 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end