query-a7af8227b3d34b5d999f8b188a4ad705
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(DISTINCT ?language) AS ?latin_script_languages)
WHERE
{
[] wdt:P37 ?language.
?language wdt:P282 ?script.
?script wdt:P279* wd:Q8229. # The script is a subclass of Latin script.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?language"):::projected
v3("?latin_script_languages")
v2("?script")
a1((" "))
c4(["wd:Q8229"]):::iri
a1 --"wdt:P37"--> v1
v1 --"wdt:P282"--> v2
v2 --"wdt:P279"--> c4
bind1[/"count(?language)"/]
v1 --o bind1
bind1 --as--o v3