reteplayground
Select

๐Ÿ”— Cross-source JOIN: CERN's people โ‹ˆ its ROR org card

SELECT ?person ?name ?role ?orgName ?city ?country WHERE {
  ?a orc:affiliationWith <https://ror.org/01ggx4157> ;
     orc:affiliationOf ?person ;
     orc:roleTitle ?role .
  ?person rdfs:label ?name .
  <https://ror.org/01ggx4157> ror:name ?orgName ;
Run this query โ†’ no server ยท no download ยท no account
caviri.github.io/rete
Run this query in the playground โ†’ 50 rows ยท 62.7 s ยท no server, no download โ€” the query runs in your browser.

The query

PREFIX orc: <https://w3id.org/rete/orcid#> PREFIX ror: <https://w3id.org/rete/ror#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?person ?name ?role ?orgName ?city ?country WHERE { ?a orc:affiliationWith <https://ror.org/01ggx4157> ; orc:affiliationOf ?person ; orc:roleTitle ?role . ?person rdfs:label ?name . <https://ror.org/01ggx4157> ror:name ?orgName ; ror:locationName ?city ; ror:countryName ?country . } LIMIT 50

rete playground ยท documentation ยท github.com/caviri/rete