Run this query →no server · no download · no account
caviri.github.io/rete
Run this query in the playground →20 rows · 274 ms · 128.0 KB of 5.4 MB read over HTTP range · no server, no download — the query runs in your browser.
The query
PREFIX anat: <https://w3id.org/rete/anatomy#>
PREFIX geo3: <https://w3id.org/rete/geo3#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?relation ?neighbour WHERE {
?k rdfs:label "Kidney"@en ; anat:side "left" .
{ ?k anat:tissueContinuousWith ?n . BIND("same tissue" AS ?relation) }
UNION
{ ?k geo3:thermallyCoupledWith ?n . BIND("heat" AS ?relation) }
?n rdfs:label ?neighbour . FILTER(langMatches(lang(?neighbour), "en"))
} ORDER BY ?relation LIMIT 20