query-02641b62dd7942ec3edc20bb35f5a946

rq turtle/ttl

Items whose English label is either "Cat" or "Hello Kitty"

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?lab ?item WHERE {
  ?item rdfs:label ?lab .
  VALUES ?lab {
    "Cat"@en
    "Hello Kitty"@en
  } .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v3("?lab"):::projected v1 --"rdfs:label"--> v3 bind0[/VALUES ?lab/] bind0-->v3 bind00([sCat^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind00 --> bind0 bind01([sHello Kitty^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind01 --> bind0