Weblog Applications Data Space
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX atom: <http://atomowl.org/ontologies/atomrdf#>
SELECT ?post_title, ?pub, ?feed
WHERE
{
?s rdf:type atom:Entry .
?s atom:title ?post_title .
?s atom:published ?pub .
?s atom:source ?feed .
?feed atom:title ?title filter regex(?title, ".*blog")
}
ORDER BY DESC (?pub)
LIMIT 10
Sample Data (Live Query Results)