query-1c3bb47d8b4189ccd76b31607573403f
Alias = Label (third time, according to the archives) This query from February 2017 TODO
Use at
- https://query.wikidata.org/sparql
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 rdfs:label ?label FILTER(lang(?label) = 'en') .
?item skos:altLabel ?alias FILTER (LANG (?alias) = 'en')
FILTER(?label = ?alias)
} LIMIT 100
Query found at
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2017/02
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2018/08
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?alias")
v3("?item"):::projected
v1("?label"):::projected
f0[["?label = ?alias"]]
f0 --> v1
f0 --> v2
f1[["?alias = 'en'"]]
f1 --> v2
f2[["?label = 'en'"]]
f2 --> v1
v3 --"rdfs:label"--> v1
v3 --"skos:altLabel"--> v2