query-e3fb94a1740fecf066bcac70cccdfe74
, restituisce la lingua di una string monolingua, qui selezioniamo solo le etichette che sono in inglese. La query completa รจ: LANGLa funzione
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?umano ?etichetta
WHERE
{
?umano wdt:P31 wd:Q15632617;
rdfs:label ?etichetta.
FILTER(LANG(?label) = "[AUTO_LANGUAGE]").
FILTER(STRSTARTS(?label, "Mr. ")).
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?etichetta"):::projected
v1("?label")
v2("?umano"):::projected
c4(["wd:Q15632617"]):::iri
f0[["starts-with(?label,'Mr. ')"]]
f0 --> v1
f1[["?label = '#91;AUTO_LANGUAGE#93;'"]]
f1 --> v1
v2 --"wdt:P31"--> c4
v2 --"rdfs:label"--> v3