query-03fc620b9df53fbe540bb50554899208

rq turtle/ttl

TODO

Use at

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

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