query-01f4802e6e4043da989ac9377ec021ee

rq turtle/ttl

Seigneurie sans identifiant CTQ : 12%

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 DISTINCT ?id ?idLabel ?municipLabel ?mrcLabel ?regionLabel  
WHERE 
{
    ?id wdt:P31 wd:Q1550557 .
    ?id wdt:P17 wd:Q16 .
    ?id wdt:P131 ?municip .
    ?municip wdt:P131 ?mrc .
    ?mrc wdt:P131 ?region .
    FILTER NOT EXISTS { ?id wdt:P2100 ?ctq }
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "fr,en" .
    }
} 
ORDER BY ?regionLabel ?mrcLabel ?municipLabel
LIMIT 200

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?ctq") v4("?id"):::projected v7("?mrc") v2("?mrcLabel"):::projected v6("?municip") v3("?municipLabel"):::projected v8("?region") v1("?regionLabel"):::projected c5(["wd:Q16"]):::iri c8(["bd:serviceParam"]):::iri c3(["wd:Q1550557"]):::iri c10(["fr,en"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P2100"--> e0v2 e0v2("?ctq"):::projected e0v1("?id"):::projected end f0--EXISTS--> f0e0 f0 --> v4 f0 --> c1 f0 --> v5 v4 --"wdt:P2100"--> v5 v4 --"wdt:P31"--> c3 v4 --"wdt:P17"--> c5 v4 --"wdt:P131"--> v6 v6 --"wdt:P131"--> v7 v7 --"wdt:P131"--> v8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end