Skip to content

04 Tools : SPARQL

Jarmo Saarikko edited this page Jul 7, 2026 · 3 revisions

finto.fi

Search SEKO data from finto.fi - see examples at Kiwi https://www.kiwi.fi/spaces/Finto/pages/186484697/SPARQL-esimerkkej%C3%A4

  1. Go to http://yasgui.triply.cc/.
  2. Follow the security guidance of your own organization, if you receive warnings when accessing the site.
  3. Set the endpoint as http://api.finto.fi/sparql and click enter.
  4. Copy any exdample from the previous Kiwi web-page - or from below.
  5. Click the play-button arrow (Run query), you should get the result of the query at thebottom of the page.

Examples

1 Get all skos:note values in SEKO

# endpoint set at http://api.finto.fi/sparql
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX yso: <http://www.yso.fi/onto/yso-meta/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

# Select any SEKO concept that has a note
SELECT * WHERE {
GRAPH <http://urn.fi/urn:nbn:fi:au:seko:> { 
    ?s skos:note  ?note .
}
}

URL to the query https://api.triplydb.com/s/F77H630fY

Clone this wiki locally