query-e51e2bb24a9d1f273b9df534d03bce86

rq turtle/ttl

Listados en ESwiki y ENwiki

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?MUNICIPIO ?MUNICIPIOLabel ?MUNICIPIODescription ?coordenadas ?estatus_patrimonialLabel ?ESwiki ?ENwiki WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
  ?MUNICIPIO wdt:P131 wd:Q1631944.
  OPTIONAL { ?MUNICIPIO wdt:P625 ?coordenadas. }
  OPTIONAL {
    ?ESwiki schema:about ?MUNICIPIO;
      schema:isPartOf <https://es.wikipedia.org/>.
  }
  OPTIONAL {
    ?ENwiki schema:about ?MUNICIPIO;
      schema:isPartOf <https://en.wikipedia.org/>.
  }
  OPTIONAL { ?MUNICIPIO wdt:P1435 ?estatus_patrimonial. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?ENwiki"):::projected v3("?ESwiki"):::projected v1("?MUNICIPIO"):::projected v2("?coordenadas"):::projected v5("?estatus_patrimonial") c11([https://en.wikipedia.org/]):::iri c2(["bd:serviceParam"]):::iri c10([https://es.wikipedia.org/]):::iri c6(["wd:Q1631944"]):::iri c4(["es"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P131"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."schema:about".-> v1 v3 --"schema:isPartOf"--> c10 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:about".-> v1 v4 --"schema:isPartOf"--> c11 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1435".-> v5 end