query-acbae10fb4907d30ecd5e68d45ad7979
: 1) Data Gamer@ 11:11, 23 July 2020 (UTC) play Data GamerThanks!! : probably you would be interested in a list of languages which are used in addition to different variants of Greek in given names:Data Gamer@
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?lang ?langLabel (COUNT(?item) AS ?cnt)
WHERE
{
VALUES ?name { wd:Q12308941 wd:Q202444 wd:Q11879590}
VALUES ?fromlang { wd:Q36510 wd:Q9129 wd:Q245899 wd:Q2042538}
?item wdt:P31 ?name .
?item wdt:P407 ?fromlang.
?item wdt:P407 ?lang .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?lang ?langLabel
Query found at
- https://www.wikidata.org/wiki/User:Data_Gamer/Queries
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2020/07
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?cnt")
v2("?fromlang")
v3("?item"):::projected
v4("?lang"):::projected
v1("?name")
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?name/]
bind0-->v1
bind00(["wd:Q12308941"])
bind00 --> bind0
bind01(["wd:Q202444"])
bind01 --> bind0
bind02(["wd:Q11879590"])
bind02 --> bind0
bind1[/VALUES ?fromlang/]
bind1-->v2
bind10(["wd:Q36510"])
bind10 --> bind1
bind11(["wd:Q9129"])
bind11 --> bind1
bind12(["wd:Q245899"])
bind12 --> bind1
bind13(["wd:Q2042538"])
bind13 --> bind1
v3 --"wdt:P31"--> v1
v3 --"wdt:P407"--> v2
v3 --"wdt:P407"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
bind3[/"count(?item)"/]
v3 --o bind3
bind3 --as--o v5