Given this command:
prefix dm: <http://one.example/>
SELECT ?pID
WHERE
{
?pID dm:hasDName "xxxvvvII" .
}
The arq engine outputs the following:
-------------------
| pID |
===================
| dm:C002172 |
-------------------
The fuseki server outputs the following:
{
"head": {
"vars": [ "pID" ]
} ,
"results": {
"bindings": [
{
"pID": { "type": "uri" , "value": "http://one.example/C002172" }
}
]
}
}
First question: how can I make the Fuseki server output the result in a more readable way with out the all braces and other token?
Second question: how can I delete datasets from Fuseki server, There is no such option in the control panel and I searched online. But all I can find is this: http://jena.apache.org/documentation/serving_data/soh.html
I tried these command in the terminal but they didn't actually work?