@prefix this: . @prefix sub: . @prefix np: . @prefix grlc: . @prefix dct: . @prefix nt: . @prefix npx: . @prefix xsd: . @prefix rdfs: . @prefix prov: . sub:Head { this: a np:Nanopublication; np:hasAssertion sub:assertion; np:hasProvenance sub:provenance; np:hasPublicationInfo sub:pubinfo . } sub:assertion { sub:get-docs-paragraph-text a grlc:grlc-query; dct:description "The newest member-signed version of one documentation paragraph, for its own page. If that version marks the paragraph as removed, the row is a removal notice with the reason, and the edit and remove actions are hidden."; dct:license ; rdfs:label "Get the current text of a documentation paragraph"; grlc:endpoint ; grlc:sparql """prefix rdf: prefix rdfs: prefix dct: prefix np: prefix npa: prefix npx: prefix schema: prefix schemas: prefix gen: # The current text of ONE documentation paragraph, for the paragraph's own part page. # ?_resource_multi_iri is the paragraph IRI; ?__context_multi_iri the documentation resource # (auto-filled by Nanodash), whose maintaining space gates the authors. Same rules as the # topic-page query: member-signed only, newest version wins. When the newest version is a # removal (typed gen:DeactivatedParagraph, optionally with a reason in rdfs:comment), the row # is a removal notice instead, and the edit and remove actions are hidden (blank ?override_target # and ?remove_target; ?remove_target otherwise carries the paragraph IRI for the remove action). select ?title ?content ?date (if(?type = gen:DeactivatedParagraph, \"\", str(?np)) as ?override_target) (if(?type = gen:DeactivatedParagraph, \"\", str(?_resource_multi_iri)) as ?remove_target) ?np (\"^\" as ?np_label) where { service { select (group_concat(?mpk; separator=\" \") as ?memberPubkeys) where { graph npa:graph { npa:thisRepo npa:hasCurrentSpaceState ?stateG . } values ?__context_multi_iri {} graph ?stateG { ?__context_multi_iri npa:isMaintainedBy? ?space . ?ri a gen:RoleInstantiation ; npa:forSpace ?space ; npa:forAgent ?agent ; npa:hasRoleType ?roleType . ?acct a npa:AccountState ; npa:agent ?agent ; npa:pubkey ?mpk . } filter(?roleType in (gen:AdminRole, gen:MaintainerRole, gen:MemberRole)) } } values ?_resource_multi_iri {} graph npa:graph { ?np npa:hasValidSignatureForPublicKeyHash ?npPubkey ; dct:created ?date ; np:hasAssertion ?a . filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?npPubkey . } } filter(contains(?memberPubkeys, ?npPubkey)) graph ?a { ?_resource_multi_iri rdf:type ?type . optional { ?_resource_multi_iri schema:title|schemas:title ?title0 . } optional { ?_resource_multi_iri gen:hasContent ?content0 . } optional { ?_resource_multi_iri rdfs:comment ?reason . } } values ?type { gen:Paragraph gen:DeactivatedParagraph } filter not exists { graph npa:graph { ?np2 npa:hasValidSignatureForPublicKeyHash ?np2Pubkey ; dct:created ?date2 ; np:hasAssertion ?a2 . filter not exists { ?npx2 npx:invalidates ?np2 ; npa:hasValidSignatureForPublicKeyHash ?np2Pubkey . } } graph ?a2 { ?_resource_multi_iri rdf:type ?type2 . } values ?type2 { gen:Paragraph gen:DeactivatedParagraph } filter(?date2 > ?date) filter(contains(?memberPubkeys, ?np2Pubkey)) } # coalesce rather than if(): RDF4J evaluates both branches of if(), and an unbound variable there is an error bind(coalesce(?title0, \"Removed paragraph\") as ?title) bind(coalesce(?content0, concat(\"

This paragraph has been removed\", coalesce(concat(\": \", ?reason), \"\"), \". Earlier versions are listed in the version history below and can be restored from there.

\")) as ?content) }""" . } sub:provenance { sub:assertion prov:wasAttributedTo . } sub:pubinfo { this: dct:created "2026-09-16T15:13:47Z"^^xsd:dateTime; dct:creator ; dct:license ; npx:embeds sub:get-docs-paragraph-text; npx:supersedes ; nt:wasCreatedFromProvenanceTemplate ; nt:wasCreatedFromPubinfoTemplate , ; nt:wasCreatedFromTemplate . sub:sig npx:hasAlgorithm "RSA"; npx:hasPublicKey "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAl8cMusqtNyKA6UIsi3f7BAcZmHQXWxU0qk0PLsboMWQxYrGBfGgHTgRHJrBRxL+Zn9kJHKVmz2smDcjCBptXi/OwWy80gjsx+Pbe6IWz3zFPWF1UoFIKfPnC0slV67CQgdM853zW7Bmk9/uflCtK4EtZKmPdRGtUHVC7DTVvDBMDzLRGdE2KCBVN29EbM5GGVNvijYbaZQ9OFQPBkQshayqSIyGRr6rreJdkrRVLIzu3uuAjKYydaeXZWSN2JLnVBwrClKUxaEdCwhb5nXpMtKOMD+R+LgaXLeJUWM8BdRSYnta9ZqI5pHY4y3v+eW7J+HHeTvRbHvlik+Z4hFUXmQIDAQAB"; npx:hasSignature "kvBmDEj6exKvsmZX0FlYlhEzTA+qnfntZmSpN/+tvglp0kaBPtTGKbQXC7/5r8KGJ2RuZ1porWFuXZG8QbsgLm06vHoLiZkOzdldPzdmFLDR7a9GZKh1O9DfUcVogeuqzu6Gr6pHzQAcDWsHTwLVcjWfPBaVWyZA7zt2RnDjuGzI8QTcZMX8RjX2OP9WgzklT5/S/npFTAEWuuQCF7EFjwZOTzJnWr8HcPr0+eTPM1tEao4LpOARIKcKEM7fodzeVNYpq6e/TDEbjJL46bX6Sth/fNzSd0JxePTs+tdn00AJ5mMRpAXr6bvAqp3t6rBXtuM5+xjWQzpelp461L6X0A=="; npx:hasSignatureTarget this:; npx:signedBy . }