query-506e86cc017923384e690470d25fe093

rq turtle/ttl

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

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

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?category"):::projected v1("?commonsSitelink") v2("?item"):::projected v3("?sitelink_label") a1((" ")) c4([https://commons.wikimedia.org/]):::iri c8(["wd:Q59541917"]):::iri c7(["wd:Q4167836"]):::iri f0[["starts-with(str(?commonsSitelink),'https://commons.wikimedia.org/wiki/Category')"]] f0 --> v1 v1 --"schema:about"--> v2 v1 --"schema:isPartOf"--> c4 v1 --"schema:name"--> v3 bind1[/"str(substring(?sitelink_label,'10^^xsd:integer'))"/] v3 --o bind1 bind1 --as--o v4 subgraph minus2["MINUS"] style minus2 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P31"--> c7 end subgraph minus3["MINUS"] style minus3 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P31"--> c8 end subgraph minus4["MINUS"] style minus4 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P373"--> a1 end