Projects/Nepomuk/QueryLibrary

From KDE TechBase

The Query Library

Nepomuk provides a Query Library which is a part of the nepomuk-core library. It can be used to dynamically create queries. This Query Library eventually compiles the queries into Sparql which is then run on our database - virtuoso.

It is recommended that you use the Query Library when you're searching for resources which have some direct properties. If the queries are too complex, maybe you should be directly using SPARQL. It all depends on your use case. The only advantage of using the QueryLibrary is that with improvements in the query library, your queries should get faster.

Creating Queries

The entire Query Library resides in the Nepomuk2::Query namespace. It consists of a number of terms which can be combined together to create larger terms. Eventually when you've have created the final term, you can pass it to Nepomuk2::Query::Query and run the query

The different kinds of terms are -

Examples

Imagine we wanted to find all files that are tagged with a certain tag:

Nepomuk::Tag myTag = someFancyMethod();

// term matching the tag
Nepomuk::Query::ResourceTerm tagTerm( myTag );

// term matching tagged resource
Nepomuk::Query::ComparisonTerm term( Soprano::Vocabulary::NAO::hasTag(), 
                                     tagTerm, 
                                     Nepomuk::Query::ComparisonTerm::Equal );

// build the query
Nepomuk::Query::Query query( term );

Introspecting Queries

The Query class provides convenient methods to convert the query into its relevant sparql query, which can then easily be read. Additionally, it also provides a toSearchUrl method.

  • toSparqlQuery() - Creates a SPARQL query to be used in Soprano::Model::executeQuery
  • toSearchUrl() - Creates a URL that can be listed via KIO.