query-ed01cf992279e27a0f4971e618f61d10
Items with a given label in any language 01:32, 22 March 2016 (UTC)) talk (Yellowcard ... Any idea? and/or French and/or German and/orHi! Is there an easy way to get items with a given label in at least one language? So I want to find all items that have the label "abc" in English 20:30, 24 March 2016 (UTC)) talk (ValterVBYes is useful also for me. --
Use at
- https://query.wikidata.org/sparql
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select distinct ?item ?label (lang(?label) as ?lang) where {
?item rdfs:label ?label filter(str(?label) = "Paris")
} limit 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?label"):::projected
v3("?lang")
f0[["str(?label) = 'Paris'"]]
f0 --> v1
v2 --"rdfs:label"--> v1
bind1[/"?label"/]
v1 --o bind1
bind1 --as--o v3