query-b86a8a88e01f7c2e6ffbc4b6a7c85b88
If you just add it to Listeria, the following could be sufficient, as Listeria allows to define the columns to display.
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
{
?item wdt:P1343 wd:Q46002746 .
?item wdt:P31 wd:Q5
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c2(["wd:Q46002746"]):::iri
c4(["wd:Q5"]):::iri
v1 --"wdt:P1343"--> c2
v1 --"wdt:P31"--> c4