Status: 
| part | subject | predicate | object | published by | date | |
|---|---|---|---|---|---|---|
|
Assertion
|
|
|||||
|
Assertion
|
Get agenda items for event
|
|
||||
|
Assertion
|
|
|||||
|
PublicationInfo
|
Get agenda items for event - Returns all agenda items belonging to the given event, with label, description, related spaces, links, creator, and nanopub link.
|
|
||||
|
Assertion
|
Returns all agenda items belonging to the given event, with label, description, related 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:AgendaItem .
?item dct:isPartOf ?_event_multi_iri .
optional { ?item rdfs:label ?item_label . }
optional { ?item dct:description ?description . }
optional { ?item schema:about ?space . }
optional { ?item rdfs:seeAlso ?link . }
}
}
group by ?item ?item_label ?description ?creator ?np ?npdate
order by asc(?npdate)
|
|
||||
|
Assertion
|
|
|||||
|
PublicationInfo
|
|