reteplayground
Select

Monet, straight out of the file

SELECT ?title ?artist (CONCAT("data:image/webp;base64,", …
  ?w wa:imageData ?d ; wa:artistNameText ?artist ; rdfs:l…
  FILTER(?artist = "Monet Claude")
} LIMIT 24
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 wa: <https://w3id.org/rete/wikiart#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?title ?artist (CONCAT("data:image/webp;base64,", STR(?d)) AS ?painting) WHERE { ?w wa:imageData ?d ; wa:artistNameText ?artist ; rdfs:label ?title . FILTER(?artist = "Monet Claude") } LIMIT 24

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