PREFIX sioc: <http://rdfs.org/sioc/ns#> PREFIX sioct: <http://rdfs.org/sioc/types#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?fname, ?msn, ?post WHERE { ?forum a sioct:SubscriptionList . ?forum sioc:parent_of ?parentf . ?parentf sioc:container_of ?post. optional { ?post foaf:maker ?maker }. optional { ?maker foaf:name ?fname } . optional { ?maker foaf:msnChatID ?msn } . }