@prefix this: <https://w3id.org/np/RA51caDkzQkBrh4Eb2aLl2Ct0PlsrUYnHLnBw21iwagmU> .
@prefix sub: <https://w3id.org/np/RA51caDkzQkBrh4Eb2aLl2Ct0PlsrUYnHLnBw21iwagmU/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix nt: <https://w3id.org/np/o/ntemplate/> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix orcid: <https://orcid.org/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

<https://w3id.org/np/RA51caDkzQkBrh4Eb2aLl2Ct0PlsrUYnHLnBw21iwagmU> a np:Nanopublication;
  np:hasAssertion sub:assertion;
  np:hasProvenance sub:provenance;
  np:hasPublicationInfo sub:pubinfo;
  dct:created "2026-07-13T10:21:38Z"^^xsd:dateTime;
  dct:creator orcid:0000-0002-1267-0234;
  dct:license <https://creativecommons.org/licenses/by/4.0/>;
  npx:embeds sub:get-template-kind-version-history;
  npx:supersedes <https://w3id.org/np/RAPwtj54O_18AwcA8OqppJZxCFG2sun9liHZ3-58nkKwU>;
  rdfs:label "Get template kind version history";
  nt:wasCreatedFromProvenanceTemplate <https://w3id.org/np/RA7lSq6MuK_TIC6JMSHvLtee3lpLoZDOqLJCLXevnrPoU>;
  nt:wasCreatedFromPubinfoTemplate <https://w3id.org/np/RA0J4vUn_dekg-U1kK3AOEt02p9mT2WO03uGxLDec1jLw>,
    <https://w3id.org/np/RAukAcWHRDlkqxk7H2XNSegc1WnHI569INvNr-xdptDGI>;
  nt:wasCreatedFromTemplate <https://w3id.org/np/RAEFAt-QcFK0ZhqfvlsmS10BnzGJA0xwOICZXkO-ai87k> .

sub:get-template-kind-version-history a <https://w3id.org/kpxl/grlc/grlc-query>;
  dct:description "Returns the version history of a space-governed definition kind (e.g. a template kind or view kind) given as the resource, for display on its maintained-resource page. Each row is a non-invalidated nanopub whose embedded instance declares dct:isVersionOf the given kind, showing its creation date, the version's label, and its author (signer, with the name resolved from the governing space's trust state where available). The row marked '✓ current' is the current governed winner of the (kind, space) pair -- the newest non-invalidated version signed by a current member+ of the governing space, with the kind validated as maintained by that space (mirroring the get-latest-governed-version resolver and the get-assertion-templates dedup). Governed winners are materialized once in a self-contained sub-select sharing no variables with the outer query, then matched by string containment. The override_target column carries the nanopub URI only for the current row (empty otherwise), so a per-row override action is offered only on the current version. Rows are ordered newest first.";
  dct:license <http://www.apache.org/licenses/LICENSE-2.0>;
  rdfs:label "Get template kind version history";
  <https://w3id.org/kpxl/grlc/endpoint> <https://w3id.org/np/l/nanopub-query-1.1/repo/full>;
  <https://w3id.org/kpxl/grlc/sparql> """prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix dct: <http://purl.org/dc/terms/>
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 foaf: <http://xmlns.com/foaf/0.1/>

select ?Date ?Title ?Author ?Author_label ?Status_noheader ?override_target ?np ?np_label where {
  values ?_resource_multi_iri {}
  {
    select (group_concat(?w1; separator=\"|\") as ?winners) where {
      {
        select ?gKind ?gSpace (max(concat(str(?gDate), \">\", str(?gNp))) as ?maxW) where {
          graph npa:graph {
            ?gNp npa:hasValidSignatureForPublicKeyHash ?gPubkeyhash ;
                 dct:created ?gDate ; npx:embeds ?gVersion ; np:hasAssertion ?gA .
            filter not exists { ?gInv npx:invalidates ?gNp ; npa:hasValidSignatureForPublicKeyHash ?gPubkeyhash . }
          }
          graph ?gA { ?gVersion dct:isVersionOf ?gKind ; gen:governedBy ?gSpace . }
          service <https://w3id.org/np/l/nanopub-query-1.1/repo/spaces> {
            graph npa:graph { <http://purl.org/nanopub/admin/thisRepo> npa:hasCurrentSpaceState ?stateG . }
            graph ?stateG {
              ?gKind npa:isMaintainedBy ?gSpace ; npa:hasGoverningSpaceRef ?gRef .
              ?gRi a gen:RoleInstantiation ; npa:forSpace ?gSpace ; npa:forSpaceRef ?gRef ;
                   npa:hasRoleType ?gTier ; npa:forAgent ?gAgent .
              filter(?gTier = gen:AdminRole || ?gTier = gen:MaintainerRole || ?gTier = gen:MemberRole)
              ?gAcct a npa:AccountState ; npa:agent ?gAgent ; npa:pubkey ?gPubkeyhash .
            }
          }
        } group by ?gKind ?gSpace
      }
      bind(concat(str(?gKind), \">\", str(?gSpace), \">\", ?maxW) as ?w1)
    }
  }
  graph npa:graph {
    ?np npa:hasValidSignatureForPublicKeyHash ?pubkeyhash ;
        npx:embeds ?version ; dct:created ?Date ; np:hasAssertion ?a .
    filter not exists { ?inv npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?pubkeyhash . }
    optional { ?np npx:signedBy ?Author . }
  }
  graph ?a { ?version dct:isVersionOf ?_resource_multi_iri . }
  optional { graph ?a { ?version rdfs:label ?Title } }
  optional { graph ?a { ?version gen:governedBy ?space } }
  bind(concat(\"|\", coalesce(?winners, \"\"), \"|\") as ?wlist)
  bind(if(bound(?space) && contains(?wlist, concat(\"|\", str(?_resource_multi_iri), \">\", str(?space), \">\", str(?Date), \">\", str(?np), \"|\")), \"✓ current\", \"\") as ?Status_noheader)
  bind(if(?Status_noheader != \"\", str(?np), \"\") as ?override_target)
  bind(coalesce(?Author, <http://purl.org/nanopub/temp/none>) as ?AuthorSafe)
  optional {
    service <https://w3id.org/np/l/nanopub-query-1.1/repo/spaces> {
      graph npa:graph { <http://purl.org/nanopub/admin/thisRepo> npa:hasCurrentSpaceState ?nStateG . }
      graph ?nStateG { ?AuthorSafe foaf:name ?Author_label . }
    }
  }
  bind(\"^\" as ?np_label)
}
order by desc(?Date)""" .

sub:assertion prov:wasAttributedTo orcid:0000-0002-1267-0234 .

orcid:0000-0002-1267-0234 foaf:name "Tobias Kuhn" .

sub:sig npx:hasAlgorithm "RSA";
  npx:hasPublicKey "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB";
  npx:hasSignature "nwuvkHHUrWYFpoi7n4sTeiDpG0XXHJ5N+xpPZLi0cmyiz+r9S1dTPK6Rdugz7vXrNJGzQzgEBFXdX3yif2w53BIafToeJ/sL4qx3K515eNaoFGk4z3FiNI1x0atMm4tvtQomCjtYPvgtXM0GpMOkfsCrvetmcKhQP3KbOyib7F4=";
  npx:hasSignatureTarget <https://w3id.org/np/RA51caDkzQkBrh4Eb2aLl2Ct0PlsrUYnHLnBw21iwagmU>;
  npx:signedBy orcid:0000-0002-1267-0234 .

