Path: / {BASE} / sparql

Single SPARQL endpoint, redirecting to the actual select endpoint when possible


Resources
NameDescription
selectExecute a SPARQL 1.1 tuple query on the LMF triple store using the query passed as query parameter to the GET request.
snorqlExecute a SPARQL 1.1 tuple query on the LMF triple store using the query passed as form parameter to the POST request.
updateExecute a SPARQL 1.1 Update request passed in the query parameter of the GET.

Method Summary
ResourceDescription
GET /{BASE}/sparql?update=…&query=…Single SPARQL endpoint, redirecting to the actual select endpoint when possible
POST /{BASE}/sparqlSingle endpoint for direct post queries (not yet implemented)

Method Detail
HTTP Example:
GET /{BASE}/sparql?update=…&query=…

API Example:

SparqlWebService.get({'update': /* update */,
  'query': /* query */});

Single SPARQL endpoint, redirecting to the actual select endpoint when possible

Output:
javax.ws.rs.core.Response -
Query parameters:
update
query
HTTP Example:
POST /{BASE}/sparql

API Example:

SparqlWebService.post({});

Single endpoint for direct post queries (not yet implemented)

Output:
javax.ws.rs.core.Response -