Projects/Nepomuk/SparqlQueries

    From KDE TechBase
    Revision as of 13:46, 12 December 2012 by AnneW (talk | contribs) (Add ToC)
    The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


    Running Sparql Queries

    Depending on the needs of your application you may need to directly run sparql queries.

    Nepomuk uses one main Soprano model which is accessed through the ResourceManager:

        Soprano::Model* model = Nepomuk::ResourceManager::instance()->mainModel();
    


    The queries can be run via this model -

        QString query = QString::fromLatin1("select ?r where { ?r a nco:Contact . }");
        Soprano::Model* model = Nepomuk2::ResourceManager::instance()->mainModel();
        Soprano::QueryResultIterator it = model->executeQuery( query, Soprano::Query::QueryLanguageSparql );
    
        while( it.next() ) {
            kDebug() << it["r"].uri();
        }
    


    Sparql Prefixes

    When writing SPARQL queries, according to the standard one needs to prepend the queries with the prefixes that have been used. For example -

    PREFIX nco: <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#> .
    select ?r ?name where { ?r a nco:Contact . ?r nco:fullname ?name . }
    

    When running queries in Nepomuk, you do not need to explicitly add the prefix. The prefix will automatically be added by the storage service. In the future we will try to make virtuoso automatically understand all prefixes.

    Full Text Indexing

    Nepomuk depends on Virtuoso for data storage. Virtuoso brings a lot of nice extensions to SPARQL. Most importantly the full text search which is used through the artificial bif:contains property.

    This allows to combine graph queries with full text queries in a nice way:

    select ?r where { ?r nao:prefLabel ?label .
                      ?label bif:contains 'nepomuk' . }
    

    The query above will find any resources that contain nepomuk in their label.

    Of course wildcards are supported, too. However, be aware that when using wildcards the expression itself needs to be enclosed in quotes as follows:

    select ?r where { ?r nao:prefLabel ?label .
                      ?label bif:contains "'nepomuk*'" . }
    

    Please note the virtuoso requires a minimum of 4 leading characters in order to use wildcards.