Example queries (or edit and write your own!). All the text boxes invoke the same SPARQL service - they just get initialised with different examples.
SELECT - get variables (apply XSLT stylesheet)
PREFIX foaf: <http://daml.umbc.edu/ontologies/cobra/0.4/foaf-basic#> SELECT ?member WHERE { ?member foaf:name "Diane Abbott" } XSLT style sheet (leave blank for none): or JSON output:
CONSTRUCT - return a graph
PREFIX foaf: <http://daml.umbc.edu/ontologies/cobra/0.4/foaf-basic#> CONSTRUCT { $member foaf:name $name } WHERE { $member foaf:name $name }