query-b1c4fed3961b77e80024c99db0a5707c

rq turtle/ttl

02:54, 21 August 2018 (UTC)) talk (Mahir256: as those who were interested in the general result returned by such a query.) Tanay barisha, Bodhisattwa, Titodutta: as the query's author, and @Pasleimreturns results when the language being filtered to is set to 'en' or 'nl' as written, but times out when it is set to 'hi', 'ja', or 'bn'. Any idea how to speed this up so that it returns results for the other languages? Is there perhaps a good way to do this querying wb_terms? (@

Use at

PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?alias
WHERE
{
  ?item skos:altLabel ?alias . FILTER (LANG (?alias) = 'bn')
  ?item rdfs:label ?alias
}
LIMIT 5

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?alias"):::projected v2("?item"):::projected f0[["?alias = 'bn'"]] f0 --> v1 v2 --"skos:altLabel"--> v1 v2 --"rdfs:label"--> v1