query-4b0c293f5cce662f50498069109e0009

rq turtle/ttl

Propertiesinstance of (P31)subclass of (P279)title (P1476)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?work ?title
WHERE
{
  ?work wdt:P31/wdt:P279* wd:Q838948;
        wdt:P1476 ?title.
  FILTER(REGEX(?title, "^\\s*\\S+(?:\\s+\\S+){33,}\\s*$", "i")).
}
ORDER BY STR(?title)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?title"):::projected v2("?work"):::projected a1((" ")) c5(["wd:Q838948"]):::iri f0[["regex(?title,'^\s*\S+(?:\s+\S+){33,}\s*$','i')"]] f0 --> v1 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 v2 --"wdt:P1476"--> v1