Run a SPARQL query

SPARQL

x
 
1
## Example SPARQL Query (Thanks to William Holmes)
2
## -- Find me all People that XML London knows about
3
## -- who are a member of the XML Guild
4
5
PREFIX org: <http://www.w3.org/ns/org#>
6
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
7
8
SELECT ?xml_london_id ?person_name
9
where {
10
  ?xml_london_id org:memberOf <http://xmlguild.org> .
11
  ?xml_london_id foaf:name ?person_name . 
12
  ?xml_london_id a foaf:Person
13
}
14

Browse

About

XML London - RDF triple store

All information about the XML London conference is open and available in Linked RDF format.

SPARQL Endpoint: http://xmllondon.com/sparql
Graph Store Protocol: http://xmllondon.com/data

Data Contributions and Thanks

Thanks go to Charles Foster and William Holmes for their contributions to the XML London dataset.

If you would like to contribute to the XML London dataset, please submit a Git Pull Request to https://github.com/cfoster/xmllondon-rdf

Please contact us if you find a bug or think something could be improved.