query-b94e3dc80fae9d773c1f4346c9f07545
Rivières du bassin versant de la baie d'Hudson SELECT Distinct ?id ?idLabel ?Longueur ?ConfluenceLabel ?BassinLabel ?OSM WHERE { ?id wdt:P31 wd:Q4022 . { ?id (wdt:P403|wdt:P201)* wd:Q3040 } # Pour une double vérification déplacez le # sur la ligne suivante.
{?id wdt:P4614* wd:Q14874626}
OPTIONAL { ?id wdt:P403 ?Confluence } OPTIONAL {?id wdt:P2043 ?Longueur }
filter (?Longueur >10) .
OPTIONAL { ?Lien schema:about ?id . ?Lien schema:isPartOf https://fr.wikipedia.org/ . } filter not exists { ?Lien schema:about ?id . ?Lien schema:isPartOf https://fr.wikipedia.org/ . } OPTIONAL {?id wdt:P4614 ?Bassin } OPTIONAL {?id wdt:P402 ?OSM }
filter not exists { ?id wdt:P402 ?OSM }
OPTIONAL {?id wdt:P31 ?nature }
SERVICE wikibase:label {bd:serviceParam wikibase:language "fr,en" . } } order by DESC(?Longueur)
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 bd: <http://www.bigdata.com/rdf#>
# Rivières du bassin versant de la baie d'Hudson
SELECT Distinct ?id ?idLabel ?Longueur ?ConfluenceLabel ?BassinLabel ?OSM WHERE {
?id wdt:P31 wd:Q4022 .
{ ?id (wdt:P403|wdt:P201)* wd:Q3040 } # Pour une double vérification déplacez le # sur la ligne suivante.
# {?id wdt:P4614* wd:Q14874626}
OPTIONAL { ?id wdt:P403 ?Confluence }
OPTIONAL {?id wdt:P2043 ?Longueur }
# filter (?Longueur >10) .
OPTIONAL {
?Lien schema:about ?id .
?Lien schema:isPartOf <https://fr.wikipedia.org/> .
}
filter not exists { ?Lien schema:about ?id .
?Lien schema:isPartOf <https://fr.wikipedia.org/> . }
OPTIONAL {?id wdt:P4614 ?Bassin }
OPTIONAL {?id wdt:P402 ?OSM }
# filter not exists { ?id wdt:P402 ?OSM }
# OPTIONAL {?id wdt:P31 ?nature }
SERVICE wikibase:label {bd:serviceParam wikibase:language "fr,en" . }
}
order by DESC(?Longueur)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?Bassin")
v4("?Confluence")
v2("?Lien")
v1("?Longueur"):::projected
v6("?OSM"):::projected
v3("?id"):::projected
c3([https://fr.wikipedia.org/]):::iri
c13(["bd:serviceParam"]):::iri
c5(["wd:Q4022"]):::iri
c7(["wd:Q3040"]):::iri
c15(["fr,en"]):::literal
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"schema:about"--> e0v2
e0v1 --"schema:isPartOf"--> e0c3
e0v1("?Lien"):::projected
e0v2("?id"):::projected
e0c3([https://fr.wikipedia.org/]):::iri
end
f0--EXISTS--> f0e0
f0 --> v2
f0 --> c1
f0 --> v3
f0 --> c2
f0 --> c3
v2 --"schema:about"--> v3
v2 --"schema:isPartOf"--> c3
v3 --"wdt:P31"--> c5
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v3 --"wdt:P201"--> c7
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v3 --"wdt:P403"--> c7
end
union0r <== or ==> union0l
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P403".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P2043".-> v1
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:about".-> v3
v2 --"schema:isPartOf"--> c3
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P4614".-> v5
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P402".-> v6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c13 --"wikibase:language"--> c15
end