query-335c17f4b158f5ed86d3f524a26f3a5b

rq turtle/ttl

Without P6262=routes:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel {
?item wdt:P16 wd:Q1426271 .
MINUS { ?item wdt:P6262 ?value } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" } .
} ORDER BY ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemLabel"):::projected v3("?value") c5(["bd:serviceParam"]):::iri c2(["wd:Q1426271"]):::iri c7(["fr"]):::literal v2 --"wdt:P16"--> c2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P6262"--> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end