query-d5ba97e36b29b636b526efe50c6641f2
Entités supra-local au Québec SELECT DISTINCT ?id ?idLabel ?statutLabel ?capitaleLabel ?regionLabel ?pop WHERE { ?id p:P31 ?statut_statement . ?statut wdt:P279* wd:Q204613 . ?statut_statement ps:P31 ?statut . Optional {?id wdt:P1082 ?pop } Optional {?id wdt:P36 ?capitale } ?id wdt:P131 ?region . FILTER NOT EXISTS { ?id wdt:P576 ?datedissol } SERVICE wikibase:label { bd:serviceParam wikibase:language 'fr'. } OPTIONAL { ?link schema:about ?id . ?link schema:isPartOf https://fr.wikipedia.org/ . } } ORDER BY ?itemLabel LIMIT 500
Use at
- https://query.wikidata.org/sparql
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Entités supra-local au Québec
SELECT DISTINCT ?id
?idLabel ?statutLabel ?capitaleLabel ?regionLabel ?pop
WHERE {
?id p:P31 ?statut_statement .
?statut wdt:P279* wd:Q204613 .
?statut_statement ps:P31 ?statut .
Optional {?id wdt:P1082 ?pop }
Optional {?id wdt:P36 ?capitale }
?id wdt:P131 ?region .
FILTER NOT EXISTS { ?id wdt:P576 ?datedissol }
SERVICE wikibase:label {
bd:serviceParam wikibase:language 'fr'.
}
OPTIONAL {
?link schema:about ?id .
?link schema:isPartOf <https://fr.wikipedia.org/> .
}
}
ORDER BY ?itemLabel
LIMIT 500
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v7("?capitale")
v3("?datedissol")
v2("?id"):::projected
v1("?itemLabel")
v9("?link")
v6("?pop"):::projected
v8("?region")
v5("?statut")
v4("?statut_statement")
c15([https://fr.wikipedia.org/]):::iri
c4(["wd:Q204613"]):::iri
c12(["fr"]):::literal
c10(["bd:serviceParam"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"p:direct/P576"--> e0v2
e0v2("?datedissol"):::projected
e0v1("?id"):::projected
end
f0--EXISTS--> f0e0
f0 --> v2
f0 --> c1
f0 --> v3
v2 --"p:direct/P576"--> v3
v2 --"p:P31"--> v4
v5 --"p:direct/P279"--> c4
v4 --"p:statement/P31"--> v5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P1082".-> v6
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P36".-> v7
end
v2 --"p:direct/P131"--> v8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v9 -."schema:about".-> v2
v9 --"schema:isPartOf"--> c15
end