query-8047d6337b998d27950033e19758e99d
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?category ?category_label WHERE {
?item wdt:P910 ?category .
MINUS { ?item rdfs:label ?label FILTER( LANG( ?label ) = 'fr' ) } .
?category rdfs:label ?category_label FILTER( LANG( ?category_label ) = 'fr' ) .
} LIMIT 5000
Query found at
- https://www.wikidata.org/wiki/User:Tubezlob
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2017/06
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?category"):::projected
v1("?category_label"):::projected
v2("?item"):::projected
v4("?label")
f0[["?category_label = 'fr'"]]
f0 --> v1
v2 --"wdt:P910"--> v3
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
f2[["?label = 'fr'"]]
f2 --> v4
v2 --"rdfs:label"--> v4
end
v3 --"rdfs:label"--> v1