query-506e86cc017923384e690470d25fe093
Commons category (P373) 217.117.125.72: Request date: 12 August 2020, byTask description. (P373)Commons category put the Category in (Q4167836)Wikimedia category (P31)instance of If item has Commons link to Category namespace and not Discussion Request process I run this task manually once or twice. Here is a SPARQL query for those:Support 15:13, 22 August 2020 (UTC)) talk (Mike Peel: Pi bot never did this, the hope is that P373 will go away soon. I'm not convinced it's worth the bot edits to do this task, it's better to use code that uses the sitelinks rather than continuing to use P373. Thanks. Jura1@ 06:53, 21 August 2020 (UTC) Jura) already does or did that. However, as the plan is to eventually drop P373, it might already have stopped doing so. --- logs • contribs • talk (Pi botOf course. I think 16:13, 14 August 2020 (UTC) 217.117.125.72. (Q17982)Skathi of history: See Jura1@ 08:46, 13 August 2020 (UTC) JuraCan you give a sample? ---
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?category WHERE {
?commonsSitelink schema:about ?item; schema:isPartOf <https://commons.wikimedia.org/>; schema:name ?sitelink_label .
FILTER(STRSTARTS(STR(?commonsSitelink), "https://commons.wikimedia.org/wiki/Category")) . # sitelink to a category
BIND(str(substr(?sitelink_label,10)) as ?category) . # strip "Category:" part
minus {?item wdt:P31 wd:Q4167836 } . # skip category items
minus {?item wdt:P31 wd:Q59541917 } . # skip category items
minus {?item wdt:P373 [] } . # items with missing P373
} LIMIT 100