query-f13affc37e0e5206972f8c84ba95287e
Aschroet
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 *
WHERE
{
?item wdt:P18 ?image .
?commons schema:about ?item .
?commons schema:isPartOf <https://commons.wikimedia.org/> .
?item wdt:P31 wd:Q5 .
?commons schema:name ?commons_title .
FILTER STRSTARTS (?commons_title, "Category:")
}
limit 100000
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"):::projected
v2("?item"):::projected
c5([https://commons.wikimedia.org/]):::iri
c7(["wd:Q5"]):::iri
f0[["starts-with(?commons_title,'Category:')"]]
f0 --> v1
v2 --"wdt:P18"--> v3
v4 --"schema:about"--> v2
v4 --"schema:isPartOf"--> c5
v2 --"wdt:P31"--> c7
v4 --"schema:name"--> v1