query-e44d2d4e518d4ab7ad9c032bf4965e58

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT (COUNT(DISTINCT ?director_de_cine) AS ?count) WHERE {
  ?director_de_cine wdt:P106/wdt:P279* wd:Q2526255;
    wdt:P21 wd:Q6581072.
  ?article schema:about ?director_de_cine ;
  schema:isPartOf <https://es.wikipedia.org/> .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article") v3("?count") v1("?director_de_cine"):::projected a1((" ")) c3(["wd:Q2526255"]):::iri c8([https://es.wikipedia.org/]):::iri c5(["wd:Q6581072"]):::iri v1 --"wdt:P106"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P21"--> c5 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c8 bind1[/"count(?director_de_cine)"/] v1 --o bind1 bind1 --as--o v3