https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/Head https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://www.nanopub.org/nschema#hasAssertion https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/assertion https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://www.nanopub.org/nschema#hasProvenance https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/provenance https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://www.nanopub.org/nschema#hasPublicationInfo https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/pubinfo https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://www.nanopub.org/nschema#Nanopublication https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/assertion https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/get-shared-statements-of-space http://purl.org/dc/terms/description Returns the general statements in a space that are supported by more than one of its projects, one row per statement, with the number of supporting projects and the projects themselves listed as links. A statement counts as supported by a project when it generalises, via hycl:hasMoreGeneralMeaningThan, a statement that declares itself relevant for that project; the target may be a specific finding or another general statement, which is how a two-level hierarchy still resolves to the projects underneath it. Projects are the given space itself and every space whose IRI extends it with a slash, the same sub-space convention the sibling 'all projects' views use, and only nanopublications signed by a current admin, maintainer or member of one of those spaces are counted, with invalidated, superseded and example nanopublications skipped. The generalisation is matched one step at a time rather than with a property path, because a path inside a named graph would have to stay within a single nanopublication while these links are each asserted in their own. The count is filtered in an enclosing query rather than with HAVING, which returns nothing here when it recomputes the aggregate. This view is the counterpart of the per-project statement views: it shows only the knowledge that more than one project reaches, which is what makes a programme more than the sum of its projects. https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/get-shared-statements-of-space http://purl.org/dc/terms/license http://www.apache.org/licenses/LICENSE-2.0 https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/get-shared-statements-of-space http://www.w3.org/1999/02/22-rdf-syntax-ns#type https://w3id.org/kpxl/grlc/grlc-query https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/get-shared-statements-of-space http://www.w3.org/2000/01/rdf-schema#label Get the statements of a space that more than one of its projects supports https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/get-shared-statements-of-space https://w3id.org/kpxl/grlc/endpoint https://w3id.org/np/l/nanopub-query-1.1/repo/full https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/get-shared-statements-of-space https://w3id.org/kpxl/grlc/sparql prefix np: <http://www.nanopub.org/nschema#> prefix npa: <http://purl.org/nanopub/admin/> prefix npx: <http://purl.org/nanopub/x/> prefix gen: <https://w3id.org/kpxl/gen/terms/> prefix hycl: <http://purl.org/petapico/o/hycl#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> select ?statement ?statement_label ?projects ?project_multi_iri ?project_label_multi where { { select ?statement ?statement_label (count(distinct ?project) as ?projects) (group_concat(distinct str(?project); separator="\n") as ?project_multi_iri) (group_concat(distinct ?projectLabel; separator="\n") as ?project_label_multi) where { values ?_space_multi_iri {} { select (group_concat(?mpk; separator=" ") as ?memberPubkeys) where { service <https://w3id.org/np/l/nanopub-query-1.1/repo/spaces> { select ?mpk where { values ?_space_multi_iri {} graph npa:graph { <http://purl.org/nanopub/admin/thisRepo> npa:hasCurrentSpaceState ?stateG . } graph ?stateG { ?ri a gen:RoleInstantiation ; npa:forSpace ?sp ; npa:forAgent ?agent ; npa:hasRoleType ?roleType . filter(?roleType in (gen:AdminRole, gen:MaintainerRole, gen:MemberRole)) ?acct a npa:AccountState ; npa:agent ?agent ; npa:pubkey ?mpk . } filter(strstarts(str(?sp), str(?_space_multi_iri))) } } } } graph npa:graph { ?gnp np:hasAssertion ?ga ; np:hasPublicationInfo ?gpi ; npa:hasValidSignatureForPublicKeyHash ?gpk . filter not exists { ?gInv npx:invalidates ?gnp ; npa:hasValidSignatureForPublicKeyHash ?gpk } filter not exists { ?gSup npx:supersedes ?gnp } filter not exists { ?gnp npx:hasNanopubType npx:ExampleNanopub } } filter(contains(?memberPubkeys, ?gpk)) graph ?ga { ?statement hycl:hasMoreGeneralMeaningThan ?supported . } graph npa:graph { ?snp np:hasAssertion ?sa ; npa:hasValidSignatureForPublicKeyHash ?spk . filter not exists { ?sInv npx:invalidates ?snp ; npa:hasValidSignatureForPublicKeyHash ?spk } filter not exists { ?sSup npx:supersedes ?snp } } filter(contains(?memberPubkeys, ?spk)) graph ?sa { ?supported gen:isRelevantFor ?project . } filter(?project = ?_space_multi_iri || strstarts(str(?project), concat(str(?_space_multi_iri), "/"))) optional { graph ?gpi { ?statement rdfs:label ?lbl } } bind(coalesce(?lbl, replace(replace(str(?statement), "^.*/aida/", ""), "[+]", " ")) as ?statement_label) bind(replace(str(?project), "^.*/", "") as ?projectLabel) } group by ?statement ?statement_label } filter(?projects > 1) } order by desc(?projects) ?statement_label https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/provenance https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/assertion http://www.w3.org/ns/prov#wasAttributedTo https://orcid.org/0000-0002-1267-0234 https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/pubinfo https://orcid.org/0000-0002-1267-0234 http://xmlns.com/foaf/0.1/name Tobias Kuhn https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://purl.org/dc/terms/created 2026-09-08T13:36:51Z https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://purl.org/dc/terms/creator https://orcid.org/0000-0002-1267-0234 https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/ https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://purl.org/nanopub/x/embeds https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/get-shared-statements-of-space https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY http://www.w3.org/2000/01/rdf-schema#label Get the statements of a space that more than one of its projects supports https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY https://w3id.org/np/o/ntemplate/wasCreatedFromProvenanceTemplate https://w3id.org/np/RA7lSq6MuK_TIC6JMSHvLtee3lpLoZDOqLJCLXevnrPoU https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RACJ58Gvyn91LqCKIO9zu1eijDQIeEff28iyDrJgjSJF8 https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RARW4MsFkHuwjycNElvEVtuMjpf4yWDL10-0C5l2MqqRQ https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RAukAcWHRDlkqxk7H2XNSegc1WnHI569INvNr-xdptDGI https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY https://w3id.org/np/o/ntemplate/wasCreatedFromTemplate https://w3id.org/np/RAEFAt-QcFK0ZhqfvlsmS10BnzGJA0xwOICZXkO-ai87k https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/sig http://purl.org/nanopub/x/hasAlgorithm RSA https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/sig http://purl.org/nanopub/x/hasPublicKey MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/sig http://purl.org/nanopub/x/hasSignature ZfPQZnhTol7rEfneba3hyQFZSPvYq5ion2bNBPPB7DRC2xMT/AKNPie3B1knhGH8v3+dFn2gJf4Dhq2y2+KMi2jV44naaUSQzeUt/k/qZUuTYuN7jRCkDQOFACpI/tfgk4t9ul54swTG78lAElk4y75EnvK3jXK8Cz/xEfOjUs8= https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/sig http://purl.org/nanopub/x/hasSignatureTarget https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY https://w3id.org/np/RArfPSRihJ44dTF3AuEu852Yl31I4dX-A_4GUxgqKYHYY/sig http://purl.org/nanopub/x/signedBy https://orcid.org/0000-0002-1267-0234