query-40b9f719e020b23a7272a27ece29c3ea
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?thing ?name WHERE {
VALUES ?name { 'cancer'@en 'Cancer'@en } .
?thing rdfs:label ?name .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?name"):::projected
v2("?thing"):::projected
bind0[/VALUES ?name/]
bind0-->v1
bind00([scancer^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind00 --> bind0
bind01([sCancer^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind01 --> bind0
v2 --"rdfs:label"--> v1