query-118fa59f0c85f7ffb31584407e54c024

rq turtle/ttl

Rivières du bassin de la Baie d'Hudson sans identifiant OSM SELECT Distinct ?id ?idLabel ?confluentLabel ?long ?natureLabel ?link WHERE {
{?id wdt:P4614* wd:Q14874626} ?id wdt:P403 ?confluent. ?id wdt:P2043 ?long . ?id wdt:P31 ?nature . FILTER (?long >10) . FILTER (?nature != wd:Q63565252) . FILTER NOT EXISTS { ?id wdt:P402 ?osm } SERVICE wikibase:label {bd:serviceParam wikibase:language "fr,en" . } OPTIONAL { ?link schema:about ?id . ?link schema:isPartOf https://fr.wikipedia.org/ . } } order by DESC(?long)

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#>
#Rivières du bassin de la Baie d'Hudson sans identifiant OSM 
SELECT Distinct ?id ?idLabel ?confluentLabel ?long ?natureLabel ?link  WHERE {  
  {?id wdt:P4614* wd:Q14874626}
  ?id wdt:P403 ?confluent.
  ?id wdt:P2043 ?long .
  ?id wdt:P31 ?nature .
  FILTER (?long >10) .
  FILTER (?nature != wd:Q63565252) .
  FILTER NOT EXISTS { ?id wdt:P402 ?osm }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "fr,en" . }
  OPTIONAL {
            ?link schema:about ?id .
            ?link schema:isPartOf <https://fr.wikipedia.org/> .
  }
}
order by  DESC(?long)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?confluent") v2("?id"):::projected v6("?link"):::projected v1("?long"):::projected v4("?nature") v3("?osm") c15([https://fr.wikipedia.org/]):::iri c10(["bd:serviceParam"]):::iri c12(["fr,en"]):::literal c5(["wd:Q14874626"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P402"--> e0v2 e0v1("?id"):::projected e0v2("?osm"):::projected end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> v3 v2 --"wdt:P402"--> v3 f1[["?nature != 'wd:Q63565252'"]] f1 --> v4 f2[["?long > '10^^xsd:integer'"]] f2 --> v1 v2 --"wdt:P4614"--> c5 v2 --"wdt:P403"--> v5 v2 --"wdt:P2043"--> v1 v2 --"wdt:P31"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v6 -."schema:about".-> v2 v6 --"schema:isPartOf"--> c15 end