query-b80c7720e9fce308ceae0fb902705797
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?item
WHERE
{
?article wdt:P1433 wd:Q35387261. # article was published in costume
?article wdt:P2093 ?item . # here's an author (without a Wikidata object)
}
ORDER BY ?item
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article")
v1("?item"):::projected
c2(["wd:Q35387261"]):::iri
v2 --"wdt:P1433"--> c2
v2 --"wdt:P2093"--> v1