From 50db7e4843ad4392451883404854f1749f210d8b Mon Sep 17 00:00:00 2001 From: Dings Dulli Date: Tue, 27 Jun 2023 18:32:56 +0000 Subject: [PATCH] GITBOOK-26: change request with no subject merged in GitBook --- SUMMARY.md | 1 + examples/download-data-using-collection-uri.md | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 examples/download-data-using-collection-uri.md diff --git a/SUMMARY.md b/SUMMARY.md index a3044c5..7b345a0 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -10,3 +10,4 @@ * [Scala/Java API](docs/usage/api.md) * [Examples](docs/examples/README.md) * [Loading data into Virtuoso (Docker)](docs/examples/exampleDocker.md) + * [Download data using Collection Uri](examples/download-data-using-collection-uri.md) diff --git a/examples/download-data-using-collection-uri.md b/examples/download-data-using-collection-uri.md new file mode 100644 index 0000000..b364de9 --- /dev/null +++ b/examples/download-data-using-collection-uri.md @@ -0,0 +1,9 @@ +# Download data using Collection Uri + +The easiest way to use the client is to pass a CollectionIRI as a source parameter. This has two advantages. First, the user interface of the collection editor is available and you do not need to write Sparql queries anymore. On the other hand you don't need to pass the `endpoint` parameter to the client anymore, because the client recognizes by itself where the collection is stored. + +## Example + +``` +java -jar databus-client.jar -s link/to/your/collection +```