query-ee37eb9c23010181ce60f2521b770aef

rq turtle/ttl

Arrondissements de Montreal (Q340)

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#>
#defaultView:Map
SELECT ?id ?idLabel ?geo ?carte ?link WHERE     
{
  ?id wdt:P31/wdt:P279* wd:Q19905455 .  # Arrondissement
  ?id wdt:P131 wd:Q340 .                # Ville de Montréal
  ?id wdt:P625 ?geo .
  OPTIONAL {?id wdt:P242 ?carte }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "fr" . }
  OPTIONAL {
            ?link schema:about ?id .
            ?link schema:isPartOf <https://fr.wikipedia.org/> .
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?carte"):::projected v2("?geo"):::projected v1("?id"):::projected v4("?link"):::projected a1((" ")) c14([https://fr.wikipedia.org/]):::iri c11(["fr"]):::literal c9(["bd:serviceParam"]):::iri c3(["wd:Q19905455"]):::iri c5(["wd:Q340"]):::iri v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P131"--> c5 v1 --"wdt:P625"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P242".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:about".-> v1 v4 --"schema:isPartOf"--> c14 end