query-bda3b983d36534cc93ad3706fa358869

rq turtle/ttl

Réserves indiennes au Québec. SELECT DISTINCT ?item ?itemLabel ?link WHERE { {?item wdt:P31/wdt:P279* wd:Q688718} ?item wdt:P31 ?nature . FILTER (?nature = wd:Q81064299) . SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en" } OPTIONAL {?link schema:about ?item . ?link schema:isPartOf https://fr.wikipedia.org/ . } } order by ?itemLabel LIMIT 100

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#>
# Réserves indiennes au Québec.
SELECT DISTINCT ?item ?itemLabel ?link
WHERE {
      {?item wdt:P31/wdt:P279* wd:Q688718}
      ?item wdt:P31 ?nature .
       FILTER (?nature = wd:Q81064299) .
       SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en" }
       OPTIONAL {?link schema:about ?item .
                 ?link schema:isPartOf <https://fr.wikipedia.org/> . }
}
order by ?itemLabel
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v1("?itemLabel"):::projected v4("?link"):::projected v2("?nature") a1((" ")) c6(["bd:serviceParam"]):::iri c4(["wd:Q688718"]):::iri c8(["fr,en"]):::literal c11([https://fr.wikipedia.org/]):::iri f0[["?nature = 'wd:Q81064299'"]] f0 --> v2 v3 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 v3 --"wdt:P31"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:about".-> v3 v4 --"schema:isPartOf"--> c11 end