Where do I test my queries for my RDF written in SPARQL

You could set up your own local SPARQL endpoint using Fuseki. Fuseki is part of the Apache Jena Project but can be downloaded as a standalone application (at the link above).

With Fuseki you can (amongst other stuff)

  1. load a local RDF dataset
  2. use that dataset to
    • expose this data as a SPARQL endpoint via http://localhost:3030/ (by default)
    • use a web based query form at http://localhost:3030/sparql.html

That means you can use Fuseki to either simply query your dataset using the web based form or to query your dataset using any application that queries SPARQL endpoints over http.

Personally, I am currently developing an application that analyses datasets via SPARQL endpoints. I use Fuseki to set up a local SPARQL endpoint with example data that I can run and test my application against.


How?

Fuseki's basic functionality is rather easy to use. The line below will start the server (SPARQL endpoint).

java -jar fuseki-server.jar --config=yourConfig.ttl

The file yourConfig.ttl is a RDF file (in turtle serialization format). To set up a basic server that loads your RDF file to memory just write (replacing at least the path to your dataset file):

# Attention: I have omitted the @prefix declarations

[] rdf:type fuseki:Server ;
   fuseki:services (
 <#yourService>
) .

<#yourService> rdf:type fuseki:Service ;
fuseki:name                     "yourService" ;
fuseki:serviceQuery             "query" ;
fuseki:serviceReadGraphStore    "get" ;
fuseki:dataset                   <#yourDataset> ;
.

<#yourDataset>    rdf:type ja:RDFDataset ;
rdfs:label "a label for your dataset" ;
ja:defaultGraph 
  [ rdfs:label "yourDataset.rdf" ;
    a ja:MemoryModel ;
    ja:content [ja:externalContent <file:Path/To/yourDataset.rdf> ] ;
  ] ;
.


There are several tools you can use to do this. Of course, there are the RDF frameworks like Apache Jena or OpenRDF Sesame (Java), or dotNetRdf (.Net), to name just three. Most if not all offer installation and getting started instructions. These are powerful solutions that you will definitely need if you go further with SW technologies and need to build your own code on top of RDF data sources.

But for trying out some simple queries, it's perhaps easier to try something like the Sesame Windows Client (SWC) tool. This is a simple graphical Windows desktop application that you can use to create a repository, load data in it, and then do SPARQL queries, without any programming or advanced configuration (disclaimer: I wrote this tool).

Tags:

Rdf

Sparql

Jena