Dump of Blog Posts with "Conversation" Feature Enabled
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 *
WHERE
{
?forum rdf:type sioct:MessageBoard.
OPTIONAL{ ?forum sioc:container_of ?post } .
OPTIONAL{ ?post dct:title ?title } .
OPTIONAL{ ?post dcc:modified ?mod_time } .
OPTIONAL{ ?post dcc:created ?create_time } .
OPTIONAL{ ?post sioc:link ?url } .
}
LIMIT 10
Sample Data (Live Query Results)