## Example SPARQL Query (Thanks to William Holmes)
## -- Find me all People that XML London knows about
## -- who are a member of the XML Guild
PREFIX org: <http://www.w3.org/ns/org#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?xml_london_id ?person_name
where {
?xml_london_id org:memberOf <http://xmlguild.org> .
?xml_london_id foaf:name ?person_name .
?xml_london_id a foaf:Person
}
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
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.