Usage

The client has many parameters, which describe what data needs to be downloaded, and how it needs to be converted. There are many ways to use the client, which are described in the following chapters.

Databus Client Parameters

Queries

Various datasets are registered on the DBpedia Databus in the form of files. A query specifies an exact selection of these records of the DBpedia Databus to be processed by the Databus Client. Therefore, the query is one of, if not the most important parameter of the client.

Possible queries

You can pass any query that selects the object of the predicate databus:file, the name of the variable does not matter. The query should look like. SELECT ?o WHERE { ?s databus:file ?o}

How to pass queries

There are three different ways to pass a query to the Databus Client:

  1. Pass the query string directly as a parameter.

    • Note: this option does not work for CLI

  2. Save the query in a file and pass the file path as a parameter.

    • The file extension of the query file must be .sparql or .query.

  3. Collection URIs are also supported. The client receives the associated query itself.

Last updated