query-1c3bb47d8b4189ccd76b31607573403f

rq turtle/ttl

Alias = Label (third time, according to the archives) This query from February 2017 TODO

Use at

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

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