Fix curl string issue

pull/187/head
Jeremiah 4 years ago committed by GitHub
parent 9ece038a77
commit 3c724a9493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      server/README.md

@ -66,7 +66,7 @@ It provides the following REST actions:
For example:
```sh
curl -f -X POST -H 'Content-Type:application/n-triples' \
--data-binary "@MY_FILE.nt" http://localhost:7878/store?graph=http://example.com/g
--data-binary "@MY_FILE.nt" "http://localhost:7878/store?graph=http://example.com/g"
```
will add the N-Triples file `MY_FILE.nt` to the server dataset inside of the `http://example.com/g` named graph.
[Turtle](https://www.w3.org/TR/turtle/), [N-Triples](https://www.w3.org/TR/n-triples/) and [RDF XML](https://www.w3.org/TR/rdf-syntax-grammar/) are supported.

Loading…
Cancel
Save