Run this query โno server ยท no download ยท no account
caviri.github.io/rete
Run this query in the playground โ50 rows ยท 313 ms ยท 256.0 KB of 48.7 MB read over HTTP range ยท no server, no download โ the query runs in your browser.
The query
PREFIX schema: <http://schema.org/>
PREFIX pulse: <https://open-pulse.epfl.ch/ontology#>
PREFIX org: <http://www.w3.org/ns/org#>
PREFIX gme: <https://openpulse.science/git-metadata-extractor#>
SELECT ?repo ?name (SAMPLE(?ln) AS ?lab) (SAMPLE(?st) AS ?stars) (SAMPLE(?lg) AS ?language) WHERE {
?repo a schema:SoftwareSourceCode ; schema:name ?name ; pulse:ownedBy ?o .
?o org:unitOf <https://ror.org/02s376052> .
OPTIONAL { ?o schema:name ?ln }
OPTIONAL { ?repo pulse:githubRepoStars ?st }
OPTIONAL { ?repo gme:primary_language ?lg }
} GROUP BY ?repo ?name ORDER BY DESC(?stars) LIMIT 50