query-b3299661d9746f242cc65ee34d5b8e4e

rq turtle/ttl

11:45, 6 April 2020 (UTC)) talk (Dipsacus fullonumHow can the query be made to run in a reasonable time? --11:47, 6 April 2020 (UTC)) talk (Bouzinac https://www.wikidata.org/wiki/User:Bouzinac#String_search_elements_without_P31_P279Might be useful to try a variant of this query (which sometimes times out, or other times performs quickly, don't know why) :

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