Run this query →no server · no download · no account
caviri.github.io/rete
Run this query in the playground →30 rows · 1.2 s · 2.0 MB of 30.7 MB read over HTTP range · no server, no download — the query runs in your browser.
The query
PREFIX ossb: <https://w3id.org/rete/oss-benchmark#>
PREFIX pulse: <https://open-pulse.epfl.ch/ontology#>
PREFIX gme: <https://openpulse.science/git-metadata-extractor#>
PREFIX org: <http://www.w3.org/ns/org#>
PREFIX schema: <http://schema.org/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?name (SAMPLE(?in) AS ?institution) (SAMPLE(?oh) AS ?organization)
(SAMPLE(?c) AS ?commits) (SAMPLE(?st) AS ?stars) (SAMPLE(?fk) AS ?forks)
(SAMPLE(?lic) AS ?license) WHERE {
?repo a schema:SoftwareSourceCode ; schema:name ?name ; ossb:numCommits ?c ;
pulse:githubRepoStars ?st ; pulse:githubRepoForks ?fk .
OPTIONAL { ?repo ossb:attributedToInstitution ?i . ?i schema:name ?in }
OPTIONAL { ?repo pulse:ownedBy ?o . ?o pulse:githubOrganizationHandle ?oh }
OPTIONAL { ?repo gme:license_name ?lic }
} GROUP BY ?repo ?name ORDER BY DESC(?commits) LIMIT 30