query-ed05809bbf87b939e603ab4d0005c3df
Commonswiki link and P373 Visite fortuitement prolongée: Request date: 4 September 2017, byLink to discussions justifying the requestTask descriptionThe items in TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?sitelink {
?item ^schema:about [ schema:isPartOf <https://commons.wikimedia.org/>; schema:name ?sitelink ] .
FILTER( STRSTARTS( ?sitelink, 'Category:' ) ) .
MINUS { ?item wdt:P373 [] } .
} LIMIT 1000
Query found at
- https://www.wikidata.org/wiki/Wikidata:Bot_requests/Archive/2017/09
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2017/09
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelink"):::projected
a2((" "))
a1((" "))
c3([https://commons.wikimedia.org/]):::iri
f0[["starts-with(?sitelink,'Category:')"]]
f0 --> v1
a1 --"schema:isPartOf"--> c3
a1 --"schema:name"--> v1
a1 --"schema:about"--> v2
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P373"--> a2
end