query-054b16e87e9cfea837010eb535975cb0
List of countries miserably fails: all countries of the worldSorry for posting such a basic question, but my attempt at getting
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
{
?item wdt:P31 wd:Q6256. # item is a country
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c2(["wd:Q6256"]):::iri
v1 --"wdt:P31"--> c2