query-0c748213c8fc26775b195db7ae0e1493

rq turtle/ttl

How to find items corresponding to Wikipedia titles without timeout?This query will find an item from the title of a Wikipedia article:

Use at

PREFIX schema: <http://schema.org/>
SELECT ?article_sv ?item
WHERE 
{
  BIND (STRLANG("Helsingfors", "sv") AS ?title_sv)
  ?article_sv schema:name ?title_sv.
  ?article_sv schema:isPartOf <https://sv.wikipedia.org/>.
  ?article_sv schema:about ?item.
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article_sv"):::projected v3("?item"):::projected v1("?title_sv") c3([https://sv.wikipedia.org/]):::iri bind0[/"STRLANG('Helsingfors','sv')"/] bind0 --as--o v1 v2 --"schema:name"--> v1 v2 --"schema:isPartOf"--> c3 v2 --"schema:about"--> v3