Dump all Customers (subclass of Organizations)
prefix ndw:<http://demo.openlinksw.com/schemas/northwind#>
prefix foaf: <http://xmlns.com/foaf/0.1/>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
select ?company ?contact ?address
where
{
?aa rdf:type foaf:Organization.
?aa ndw:companyName ?company .
?aa ndw:contactName ?contact .
?aa ndw:address ?address .
}
Sample Data (Live Query Results)
- Click *Here* for a live SPARQL Query (via SPARQL Protocol) against a collection of Northwind Customers.