query-dbf76a473415805452ca2da349ce18ab
Jobu0101
Use at
- https://query.wikidata.org/sparql
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?item ?label ?lang where {
{ { ?item rdfs:label ?label } union { ?item skos:altLabel ?label } }
filter (lcase(str(?label)) = lcase("Paris") )
bind(lang(?label) as ?lang) .
} 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"):::projected
f0[["lower-case(str(?label)) = lower-case('Paris')"]]
f0 --> v1
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"skos:altLabel"--> v1
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"rdfs:label"--> v1
end
union0r <== or ==> union0l
end
bind1[/"?label"/]
v1 --o bind1
bind1 --as--o v3