query-8cbf4a74b90bc615e9fb03834a3ae18c

rq turtle/ttl

French communes with OSM relation if avalaible SELECT ?itemLabel ?item ?OSM ?code WHERE { ?item wdt:P31 wd:Q484170 . #French communes ?item wdt:P374 ?code . #with INSEE code OPTIONAL { ?item wdt:P402 ?OSM }. #OSM relation if avalaible SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" } }

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#>
#French communes with OSM relation if avalaible
SELECT ?itemLabel ?item ?OSM ?code
WHERE
{
    ?item wdt:P31 wd:Q484170 . #French communes
    ?item wdt:P374 ?code . #with INSEE code
    OPTIONAL { ?item wdt:P402 ?OSM }. #OSM relation if avalaible
    SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?OSM"):::projected v2("?code"):::projected v1("?item"):::projected c6(["bd:serviceParam"]):::iri c8(["fr"]):::literal c2(["wd:Q484170"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P374"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P402".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end