reteplayground
Select

Find a thing by its name

SELECT ?entity ?name WHERE {
  ?entity rdfs:label ?name .
  FILTER(CONTAINS(LCASE(STR(?name)), "bemelen"))
} LIMIT 25
Run this query → no server · no download · no account
caviri.github.io/rete
Run this query in the playground → no server, no download — the query runs in your browser.

The query

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?entity ?name WHERE { ?entity rdfs:label ?name . FILTER(CONTAINS(LCASE(STR(?name)), "bemelen")) } LIMIT 25

rete playground · documentation · github.com/caviri/rete