query-8373118c0aa81b4f00c62e5ed3eb8514
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item
WHERE
{
?article wdt:P1433 wd:Q35387261. # article was published in costume
?article wdt:P50 ?item . # here's an author
}
Query found at
- https://www.wikidata.org/wiki/User_talk:PKM/Costume_contributors
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2019/02
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article")
v2("?item"):::projected
c2(["wd:Q35387261"]):::iri
v1 --"wdt:P1433"--> c2
v1 --"wdt:P50"--> v2