Skip to content

Commit

Permalink
Add example of querying using curl to GRAPHSTORE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasl committed Oct 19, 2018
1 parent 2ce44bd commit cff1c1c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions GRAPHSTORE.md
Expand Up @@ -59,6 +59,20 @@ Start:

java -server -Xmx4g -Dbigdata.propertyFile=quads.properties -Djetty.overriWebXml=readonly.xml -jar blazegraph.jar

### Querying

You can use the web interface, or the endpoint directly (useful e.g. to download large results):

```
curl -s http://localhost:9999/blazegraph/namespace/kb/sparql \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: text/tab-separated-values' --data-urlencode 'query=
SELECT ...
'
```

----

## Using Sesame
Expand Down

0 comments on commit cff1c1c

Please sign in to comment.