🔗 References (max. 100)

show query show view full screen
part subject predicate object published by date
Assertion
Assertion
Get status updates for event
Assertion
PublicationInfo
Get status updates for event - Returns all status updates belonging to the given event, with label, description, concerned spaces, links, creator, and nanopub link.
Assertion
Returns all status updates belonging to the given event, with label, description, concerned spaces, links, creator, and nanopub link.
Assertion
Assertion
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 schema: <http://schema.org/> prefix gen: <https://w3id.org/kpxl/gen/terms/> select ?item ?item_label ?description (group_concat(distinct str(?space); separator=" ") as ?spaces_multi_iri) (group_concat(distinct concat('<span><a href="', str(?link), '">link</a></span>'); separator=", ") as ?link) ?creator ?np ("^" as ?np_label) where { graph npa:graph { ?np npa:hasValidSignatureForPublicKeyHash ?pubkey . filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?pubkey . } filter not exists { ?np npx:hasNanopubType npx:ExampleNanopub . } ?np dct:created ?npdate . ?np dct:creator ?creator . ?np np:hasAssertion ?a . ?np npx:introduces ?item . } values ?_event_multi_iri {} graph ?a { ?item a gen:StatusUpdate . ?item dct:isPartOf ?_event_multi_iri . ?item schema:about ?space . optional { ?item rdfs:label ?item_label . } optional { ?item dct:description ?description . } optional { ?item rdfs:seeAlso ?link . } } } group by ?item ?item_label ?description ?creator ?np ?npdate order by asc(?npdate)
PublicationInfo
Assertion