query-56765142baec7300730dd2142acfe45b
Propertiesinstance of (P31)
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label WHERE{
?item wdt:P31 wd:Q5 .
?item rdfs:label ?label FILTER(lang(?label) = 'en') .
?item skos:altLabel ?alias FILTER (LANG (?alias) = 'en')
FILTER(?label = ?alias)
} LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?alias")
v3("?item"):::projected
v1("?label"):::projected
c3(["wd:Q5"]):::iri
f0[["?label = ?alias"]]
f0 --> v1
f0 --> v2
f1[["?alias = 'en'"]]
f1 --> v2
f2[["?label = 'en'"]]
f2 --> v1
v3 --"wdt:P31"--> c3
v3 --"rdfs:label"--> v1
v3 --"skos:altLabel"--> v2