query-b22bde775b79f7ddc045fd24c7902355

rq turtle/ttl

Bassin de l'Harricana SELECT Distinct ?id ?idLabel ?longueur ?affluentLabel ?riveLabel ?natureLabel ?lien WHERE {
{?id wdt:P4614* wd:Q70205427} ?id wdt:P403 ?affluent. ?id wdt:P2043 ?longueur . Optional { ?id wdt:P3871 ?rive } ?id wdt:P31 ?nature .

filter (?natureĀ != wd:Q63565252) .

filter (?longueur > 15) .

?id wdt:P402 ?osm .

SERVICE wikibase:label {bd:serviceParam wikibase:language "fr,en" . } OPTIONAL { ?lien schema:about ?id . ?lien schema:isPartOf https://fr.wikipedia.org/ . } } order by ?affluentLabel

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#>
# Bassin de l'Harricana
SELECT Distinct ?id ?idLabel ?longueur ?affluentLabel ?riveLabel ?natureLabel ?lien 
WHERE {  
  {?id wdt:P4614* wd:Q70205427}
  ?id wdt:P403 ?affluent.
  ?id wdt:P2043 ?longueur .
  Optional { ?id wdt:P3871 ?rive }
  ?id wdt:P31 ?nature .
#  filter (?natureĀ != wd:Q63565252) .
  filter  (?longueur > 15) .
# ?id wdt:P402 ?osm .
  SERVICE wikibase:label {bd:serviceParam wikibase:language "fr,en" . }
  OPTIONAL {
            ?lien schema:about ?id .
            ?lien schema:isPartOf <https://fr.wikipedia.org/> .
  }
}
order by ?affluentLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?affluent") v1("?affluentLabel"):::projected v3("?id"):::projected v7("?lien"):::projected v2("?longueur"):::projected v6("?nature") v5("?rive") c14([https://fr.wikipedia.org/]):::iri c9(["bd:serviceParam"]):::iri c11(["fr,en"]):::literal c3(["wd:Q70205427"]):::iri f0[["?longueur > '15^^xsd:integer'"]] f0 --> v2 v3 --"wdt:P4614"--> c3 v3 --"wdt:P403"--> v4 v3 --"wdt:P2043"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P3871".-> v5 end v3 --"wdt:P31"--> v6 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; v7 -."schema:about".-> v3 v7 --"schema:isPartOf"--> c14 end