WARNING! This URL (in the Main cluster) is no longer the authoritative source for this page; it has been moved to the VOS or ODS cluster as appropriate instead.
See Tim Haynes in case of confusion.
Obtaining a dump of all Posts within an ODS-Feeds Data Space.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX sioc: <http://rdfs.org/sioc/ns#>
PREFIX sioct: <http://rdfs.org/sioc/types#>
PREFIX dct: <http://purl.org/dc/elements/1.1/>
PREFIX dcc: <http://purl.org/dc/terms/>
SELECT distinct ?forum_name, ?creator, ?channel, ?item_title, ?url, ?created
WHERE {
?forum a sioct:SubscriptionList ;
sioc:id ?forum_name.
?forum sioc:scope_of ?role.
?role sioc:function_of <http://demo.openlinksw.com/dataspace/demo> .
?forum sioc:parent_of ?channel .
?channel sioc:container_of ?post .
optional{?post dct:title ?item_title }.
optional{ ?post sioc:links_to ?url }.
optional{ ?post sioc:has_creator ?creator }.
optional{ ?post dcc:created ?created }
}
ORDER BY DESC (?created)