Run this query →no server · no download · no account
caviri.github.io/rete
Run this query in the playground →9 rows · 1.2 s · 72.6 KB of 328.6 KB read over HTTP range · no server, no download — the query runs in your browser.
The query
PREFIX enac: <https://w3id.org/rete/enac-it4research#>
PREFIX schema: <http://schema.org/>
SELECT ?what (COUNT(DISTINCT ?x) AS ?n) WHERE {
{ ?x a enac:Project . BIND("Showcase projects" AS ?what) }
UNION { ?x a enac:ResearchSoftware . BIND("Research software" AS ?what) }
UNION { ?x a enac:StudentProject . BIND("Student project offers" AS ?what) }
UNION { ?x a enac:Laboratory . BIND("Laboratories" AS ?what) }
UNION { ?y enac:hasRepository ?x . BIND("Code repositories" AS ?what) }
UNION { ?y enac:hasCodeOrganization ?x . BIND("GitHub/GitLab orgs" AS ?what) }
UNION { ?x a schema:Dataset . BIND("Datasets" AS ?what) }
UNION { ?x a schema:Person . BIND("People" AS ?what) }
UNION { ?x a schema:ScholarlyArticle . BIND("Cited publications" AS ?what) }
}
GROUP BY ?what
ORDER BY DESC(?n)