sparqlQuery
Execute read-only SPARQL queries on GraphDB repositories to retrieve data in JSON, XML, or CSV formats. Specify graphs and query parameters for precise results.
Instructions
Execute a read-only SPARQL query against the GraphDB repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Optional: Response format (json, xml, csv) | json |
graph | No | Optional: Specific graph IRI to query | |
query | Yes | The SPARQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Optional: Response format (json, xml, csv)",
"enum": [
"json",
"xml",
"csv"
],
"type": "string"
},
"graph": {
"description": "Optional: Specific graph IRI to query",
"type": "string"
},
"query": {
"description": "The SPARQL query to execute",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}