relpipe-data/examples/rdf-heathers-members.sparql
author František Kučera <franta-hg@frantovo.cz>
Sun, 09 May 2021 00:06:13 +0200
branchv_0
changeset 323 e2d607e4a4f4
parent 310 aeda3cb4528d
permissions -rw-r--r--
release-v0.18.sh: run apt install only once + small fixes and improvements

PREFIX person:     <tag:heathers.globalcode.info,2020:person:>
PREFIX predicate:  <tag:heathers.globalcode.info,2020:predicate:>
PREFIX thing:      <tag:heathers.globalcode.info,2020:thing:>

SELECT
	?group_name
	(count(*) AS ?member_count)
WHERE {
	?person predicate:is-member-of ?group .
	?group predicate:has-title ?group_name .
}
GROUP BY ?group_name
ORDER BY DESC(?member_count)