query-03fc620b9df53fbe540bb50554899208
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?s ?label (LANG(?label) AS ?lc)
Where {
?s ?p "Smithsonian Institution"@zh .
?s rdfs:label ?label . FILTER (langmatches(lang(?label), "zh"))
}
LIMIT 100
Query found at
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2022/11
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/en
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/es
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/fr
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?label"):::projected
v4("?lc")
v3("?p")
v2("?s"):::projected
c2([sSmithsonian Institution^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
f0[["langmatch(?label,'zh')"]]
f0 --> v1
v2 -->v3--> c2
v2 --"rdfs:label"--> v1
bind1[/"?label"/]
v1 --o bind1
bind1 --as--o v4