Run this query →no server · no download · no account
caviri.github.io/rete
Run this query in the playground →200 rows · 424 ms · 73.3 KB of 457.3 KB read over HTTP range · no server, no download — the query runs in your browser.
The query
PREFIX pulse: <https://open-pulse.epfl.ch/ontology#>
PREFIX org: <http://www.w3.org/ns/org#>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?what ?kind ?lab WHERE {
?x pulse:ownedBy ?l .
?l org:unitOf <https://ror.org/02s376052> ; schema:name ?lab .
?x rdfs:label ?what ; a ?t .
BIND(STRAFTER(STR(?t), "#") AS ?kind)
FILTER(?kind != "")
} ORDER BY ?lab ?what LIMIT 200