I have a RDF File like the one shown below. But I am finding it hard to do queries on it. For example could anyone tell me a simple query where I could extract the about (http://websitename.com/urls/a) or resource (http://websitename.com/urls/b) or about and resource where the relationship/owl is sameas.
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#" >
<rdf:Description rdf:about="http://websitename.com/urls/a">
<owl:sameas rdf:resource="http://websitename.com/urls/b"/>
</rdf:Description>
</rdf:RDF>
Thanks