query-707bc4eb91e78140d87be49405b93eb6

rq turtle/ttl

Aschroet

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT *
WHERE
{

{
  SELECT DISTINCT ?item
  WHERE
  {
    ?item wdt:P18 ?image .
    ?item wdt:P31 wd:Q5 .
  }
  limit 180000
}  ?commons schema:about ?item .
  ?commons schema:isPartOf <https://commons.wikimedia.org/> .
  ?commons schema:name ?commons_title .
  FILTER STRSTARTS (?commons_title, "Category:")
}
limit 110000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?commons"):::projected v1("?commons_title"):::projected v3("?image") v2("?item"):::projected c7([https://commons.wikimedia.org/]):::iri c4(["wd:Q5"]):::iri f0[["starts-with(?commons_title,'Category:')"]] f0 --> v1 v2 --"wdt:P18"--> v3 v2 --"wdt:P31"--> c4 v4 --"schema:about"--> v2 v4 --"schema:isPartOf"--> c7 v4 --"schema:name"--> v1